Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function map(Service ...$services) { |
||
13 | return [ |
||
14 | 'container' => [ |
||
15 | $this->attributes() => [ |
||
16 | 'xmlns' => 'http://symfony.com/schema/dic/services', |
||
17 | 'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance', |
||
18 | ], |
||
19 | 'services' => $this->collection(new ServiceMapper(), $services), |
||
20 | ], |
||
21 | ]; |
||
22 | } |
||
23 | } |
||
24 |