mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-05 06:23:53 +09: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()
|
|
{
|
|
}
|
|
}
|