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