1 | <?php |
||
19 | abstract class Command extends BaseCommand |
||
20 | { |
||
21 | /** |
||
22 | * Get kernel. |
||
23 | * |
||
24 | * @return \Symfony\Component\HttpKernel\KernelInterface |
||
25 | * |
||
26 | * @throws \RuntimeException |
||
27 | * |
||
28 | * @codeCoverageIgnore |
||
29 | */ |
||
30 | protected function getKernel() |
||
39 | |||
40 | /** |
||
41 | * Get Container. |
||
42 | * |
||
43 | * @return \Symfony\Component\DependencyInjection\ContainerInterface |
||
44 | * |
||
45 | * @codeCoverageIgnore |
||
46 | */ |
||
47 | protected function getContainer() |
||
51 | } |
||
52 |