Total Complexity | 9 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | trait AutoWireAwareTrait |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var boolean |
||
17 | */ |
||
18 | protected $wasAutoWired = false; |
||
19 | |||
20 | /** |
||
21 | * @param Container $container |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | protected function autoWire(Container $container): void |
||
56 | } |
||
57 | |||
58 | /** |
||
59 | * @return bool |
||
60 | */ |
||
61 | public function wasAutoWired(): bool |
||
67 |