1 | <?php |
||
21 | class SeparateProcessExecutor implements ExecutorInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $consolePath; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $environment; |
||
32 | |||
33 | /** |
||
34 | * @param string $consolePath |
||
35 | * @param string $environment |
||
36 | */ |
||
37 | 13 | public function __construct($consolePath, $environment) |
|
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | 2 | public function execute(TaskExecutionInterface $execution) |
|
60 | } |
||
61 |