1 | <?php |
||
13 | class ClassWithVariadicConstructorArgument |
||
14 | { |
||
15 | /** |
||
16 | * @var mixed |
||
17 | */ |
||
18 | private $foo; |
||
19 | |||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | private $bar; |
||
24 | |||
25 | /** |
||
26 | * ClassWithVariadicConstructorArguments constructor. |
||
27 | * |
||
28 | * @param mixed $foo |
||
29 | * @param array ...$bar |
||
30 | */ |
||
31 | public function __construct($foo, ... $bar) |
||
36 | } |
||
37 |