Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / includes / FooVariadic.php
1 <?php
2
3 namespace Symfony\Component\DependencyInjection\Tests\Fixtures\includes;
4
5 use Symfony\Component\DependencyInjection\Tests\Compiler\Foo;
6
7 class FooVariadic
8 {
9     public function __construct(Foo $foo)
10     {
11     }
12
13     public function bar(...$arguments)
14     {
15     }
16 }