add test case for #3271

This commit is contained in:
TomasVotruba 2020-04-29 13:15:15 +02:00
parent 082b40c461
commit f2060ed923

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()
{
}
}