1 | <?php |
||
21 | final class RunCommand extends Command |
||
22 | { |
||
23 | /** |
||
24 | * @var StyleInterface |
||
25 | */ |
||
26 | private $style; |
||
27 | |||
28 | /** |
||
29 | * @var Application |
||
30 | */ |
||
31 | private $application; |
||
|
|||
32 | |||
33 | /** |
||
34 | * @var MultiCsFileLoader |
||
35 | */ |
||
36 | private $multiCsFileLoader; |
||
37 | |||
38 | public function __construct(Application $application, StyleInterface $style, MultiCsFileLoader $multiCsFileLoader) |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | protected function configure() |
||
57 | |||
58 | /** |
||
59 | * {@inheritdoc} |
||
60 | */ |
||
61 | protected function execute(InputInterface $input, OutputInterface $output) |
||
82 | |||
83 | private function createRunApplicationCommandFromInput(InputInterface $input) : RunApplicationCommand |
||
91 | } |
||
92 |