| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | trait HasApplication |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The application implementation. |
||
| 16 | * |
||
| 17 | * @var Application |
||
| 18 | */ |
||
| 19 | protected $app; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Get the application instance. |
||
| 23 | * |
||
| 24 | * @return Application |
||
| 25 | */ |
||
| 26 | public function getApplication() |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return \Nip\Container\Container |
||
| 33 | */ |
||
| 34 | public function getContainer() |
||
| 39 |