rector/packages-tests/BetterPhpDocParser/PhpDocParser/TagValueNodeReprint/Fixture/SymfonyRoute/RouteNameWithMethodAndClassConstant.php

19 lines
451 B
PHP

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