| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 12 | class AbstractConsoleController extends BaseController |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var ContainerInterface |
||
| 16 | */ |
||
| 17 | protected $container; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * ConsumerController constructor. |
||
| 21 | * |
||
| 22 | * @param ContainerInterface $container |
||
| 23 | */ |
||
| 24 | 17 | public function __construct(ContainerInterface $container) |
|
| 28 | |||
| 29 | |||
| 30 | /** |
||
| 31 | * @return ContainerInterface |
||
| 32 | */ |
||
| 33 | 2 | protected function getServiceLocator() |
|
| 37 | } |
||
| 38 |