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