1 | <?php |
||
11 | class Command extends SymfonyCommand |
||
12 | { |
||
13 | /** |
||
14 | * @var Run |
||
15 | */ |
||
16 | private $run; |
||
17 | |||
18 | /** |
||
19 | * @var Load |
||
20 | */ |
||
21 | private $load; |
||
22 | |||
23 | 1 | public function __construct(Run $run, Load $load) |
|
29 | |||
30 | 1 | protected function configure() |
|
36 | |||
37 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
42 | } |
||
43 |