| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 13 | trait ContainerAwareTrait |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * The application container |
||
| 18 | * |
||
| 19 | * @Inject |
||
| 20 | * |
||
| 21 | * @var ContainerInterface |
||
| 22 | */ |
||
| 23 | protected $container; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Gets the application container |
||
| 27 | * |
||
| 28 | * @return ContainerInterface |
||
| 29 | */ |
||
| 30 | public function getContainer() : ContainerInterface |
||
| 35 |