1 | <?php |
||
14 | abstract class ContainerAwareCommand extends Command implements ContainerAwareInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var ContainerInterface|null |
||
18 | */ |
||
19 | private $container; |
||
20 | |||
21 | /** |
||
22 | * @return ContainerInterface |
||
23 | */ |
||
24 | 2 | public function getContainer() |
|
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | 1 | public function setContainer(ContainerInterface $container = null) |
|
40 | } |
||
41 |