| 1 | <?php |
||
| 13 | abstract class ContainerAwareCommand extends Command implements ContainerAwareInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var ContainerInterface |
||
| 17 | */ |
||
| 18 | protected $container; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param ContainerInterface $container |
||
| 22 | * @param string|null $name |
||
| 23 | */ |
||
| 24 | public function __construct(ContainerInterface $container, $name = null) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function setContainer(ContainerInterface $container = null) |
||
| 38 | } |
||
| 39 |