1 | <?php |
||
22 | abstract class ManifestCommand extends Command |
||
23 | { |
||
24 | /** |
||
25 | * @var ManifestChain Manifest chain |
||
26 | */ |
||
27 | protected $chain; |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 12 | protected function configure() |
|
36 | |||
37 | /** |
||
38 | * Sets manifest chain. |
||
39 | * |
||
40 | * @param ManifestChain $chain Manifest chain |
||
41 | */ |
||
42 | 3 | public function setChain(ManifestChain $chain) |
|
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | 8 | protected function execute(InputInterface $input, OutputInterface $output) |
|
67 | } |
||
68 |