Files
laravel-data-sync/vendor/symfony/routing/Tests/Fixtures/AnnotationFixtures/ActionPathController.php
2019-01-22 17:58:20 -05:00

16 lines
254 B
PHP

<?php
namespace Symfony\Component\Routing\Tests\Fixtures\AnnotationFixtures;
use Symfony\Component\Routing\Annotation\Route;
class ActionPathController
{
/**
* @Route("/path", name="action")
*/
public function action()
{
}
}