1 | <?php |
||
7 | class Service { |
||
8 | |||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $id; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $class; |
||
18 | |||
19 | /** |
||
20 | * @var Service[] |
||
21 | */ |
||
22 | private $arguments; |
||
23 | |||
24 | public function __construct(string $id, string $class = '', Service ...$arguments) { |
||
29 | |||
30 | public function getId(): string { |
||
33 | |||
34 | public function getClass(): string { |
||
37 | |||
38 | /** |
||
39 | * @return Service[] |
||
40 | */ |
||
41 | public function getArguments(): array { |
||
44 | } |
||
45 |