Merge pull request #3240 from stephanvierkant/master

This commit is contained in:
Tomas Votruba 2020-04-24 14:06:44 +02:00 committed by GitHub
commit 959ffbb10b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
<?php
declare(strict_types=1);
namespace Rector\BetterPhpDocParser\Tests\PhpDocParser\TagValueNodeReprint\Fixture\SymfonyRoute;
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/hello", name="route_name")
*/
final class RouteWithPrefixAndEmptyName
{
/**
* @Route("/", name="")
*/
public function run()
{
}
}