Total Complexity | 8 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | trait LazyServiceTrait |
||
11 | { |
||
12 | |||
13 | public ContainerInterface $container; |
||
14 | |||
15 | /** |
||
16 | * @inheritDoc |
||
17 | */ |
||
18 | public function setContainer(ContainerInterface $container): void |
||
19 | { |
||
20 | $this->container = $container; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @inheritDoc |
||
25 | */ |
||
26 | public static function getAllServices(): array |
||
48 | } |
||
49 | |||
50 | } |