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