Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | trait ContainerTrait |
||
12 | { |
||
13 | /** |
||
14 | * Container |
||
15 | * |
||
16 | * @var \Illuminate\Contracts\Container\Container |
||
17 | */ |
||
18 | protected $container; |
||
19 | |||
20 | /** |
||
21 | * Set Container |
||
22 | * |
||
23 | * @param \Illuminate\Contracts\Container\Container |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | 53 | public function setContainer(ContainerInterface $container): void |
|
32 |