mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-11 03:51:43 +00:00
19 lines
288 B
PHP
19 lines
288 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\Routing\Tests\Fixtures\AnnotationFixtures;
|
|
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
|
|
/**
|
|
* @Route("/prefix")
|
|
*/
|
|
class RouteWithPrefixController
|
|
{
|
|
/**
|
|
* @Route("/path", name="action")
|
|
*/
|
|
public function action()
|
|
{
|
|
}
|
|
}
|