11 lines
157 B
PHP
11 lines
157 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\HttpKernel\Tests\Fixtures\Controller;
|
|
|
|
class VariadicController
|
|
{
|
|
public function action($foo, ...$bar)
|
|
{
|
|
}
|
|
}
|