| 1 | <?php |
||
| 21 | class Command extends BaseCommand implements ContainerAwareInterface |
||
| 22 | { |
||
| 23 | use ContainerAwareTrait; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get kernel. |
||
| 27 | * |
||
| 28 | * @return \Symfony\Component\HttpKernel\KernelInterface |
||
| 29 | * |
||
| 30 | * @throws \RuntimeException |
||
| 31 | * |
||
| 32 | * @codeCoverageIgnore |
||
| 33 | */ |
||
| 34 | protected function getKernel() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Get Container. |
||
| 46 | * |
||
| 47 | * @return \Symfony\Component\DependencyInjection\ContainerInterface |
||
| 48 | */ |
||
| 49 | 1 | protected function getContainer() |
|
| 53 | } |
||
| 54 |