mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-11 16:52:10 +00:00
16 lines
280 B
PHP
16 lines
280 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\Routing\Tests\Fixtures\AnnotationFixtures;
|
|
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
|
|
/**
|
|
* @Route(path={"nl": "/hier", "en": "/here"}, name="action")
|
|
*/
|
|
class InvokableLocalizedController
|
|
{
|
|
public function __invoke()
|
|
{
|
|
}
|
|
}
|