17 lines
272 B
PHP
Executable File
17 lines
272 B
PHP
Executable File
<?php
|
|
|
|
namespace Symfony\Component\DependencyInjection\Tests\Fixtures\includes;
|
|
|
|
use Symfony\Component\DependencyInjection\Tests\Compiler\Foo;
|
|
|
|
class FooVariadic
|
|
{
|
|
public function __construct(Foo $foo)
|
|
{
|
|
}
|
|
|
|
public function bar(...$arguments)
|
|
{
|
|
}
|
|
}
|