Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
9 | abstract class BaseRabbitMqCommand extends Command implements ContainerAwareInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var ContainerInterface |
||
13 | */ |
||
14 | protected $container; |
||
15 | |||
16 | /** |
||
17 | * {@inheritDoc} |
||
18 | */ |
||
19 | public function setContainer(ContainerInterface $container = null) |
||
20 | { |
||
21 | $this->container = $container; |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return ContainerInterface |
||
26 | */ |
||
27 | public function getContainer() |
||
30 | } |
||
31 | } |
||
32 |