1 | <?php |
||
17 | class SeriesExecutor implements ExecutorInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var InputInterface |
||
21 | */ |
||
22 | private $input; |
||
23 | |||
24 | /** |
||
25 | * @var OutputInterface |
||
26 | */ |
||
27 | private $output; |
||
28 | |||
29 | /** |
||
30 | * @var Informer |
||
31 | */ |
||
32 | private $informer; |
||
33 | |||
34 | /** |
||
35 | * @param InputInterface $input |
||
36 | * @param OutputInterface $output |
||
37 | * @param Informer $informer |
||
38 | */ |
||
39 | 6 | public function __construct(InputInterface $input, OutputInterface $output, Informer $informer) |
|
45 | |||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | 6 | public function run($tasks, $hosts) |
|
80 | } |
||
81 |