1 | <?php |
||
10 | class RestartCommand extends Command |
||
11 | { |
||
12 | /** |
||
13 | * @var Machine |
||
14 | */ |
||
15 | private $machine; |
||
16 | |||
17 | /** |
||
18 | * @param Machine $machine |
||
19 | */ |
||
20 | public function __construct(Machine $machine) |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | protected function configure() |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | protected function execute(InputInterface $input, OutputInterface $output) |
||
49 | } |
||
50 |