mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 03:35:01 +01:00
Merge pull request #3240 from stephanvierkant/master
This commit is contained in:
commit
959ffbb10b
@ -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()
|
||||
{
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user