1 | <?php |
||
11 | class PsCommand extends Command |
||
12 | { |
||
13 | /** |
||
14 | * @var ConfiguredContainers |
||
15 | */ |
||
16 | private $configuredContainers; |
||
17 | |||
18 | /** |
||
19 | * @param ConfiguredContainers $configuredContainers |
||
20 | */ |
||
21 | public function __construct(ConfiguredContainers $configuredContainers) |
||
22 | { |
||
23 | parent::__construct(); |
||
24 | |||
25 | $this->configuredContainers = $configuredContainers; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | protected function configure() |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | protected function execute(InputInterface $input, OutputInterface $output) |
||
49 | } |
||
50 |