Merge pull request #3272 from rectorphp/test-for-route

This commit is contained in:
Tomas Votruba 2020-04-29 13:38:41 +02:00 committed by GitHub
commit ac7e95b7c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace Rector\BetterPhpDocParser\Tests\PhpDocParser\TagValueNodeReprint\Fixture\SymfonyRoute;
use Symfony\Component\Routing\Annotation\Route;
final class RouteNameWithMethodAndClassConstant
{
/**
* @Route("/", methods={"GET", "POST"}, name=MyController::ROUTE_NAME)
*/
public function run()
{
}
}