1 | <?php |
||
7 | class PcntlCommandRunner implements CommandRunner |
||
8 | { |
||
9 | /** |
||
10 | * @var CliFunctionChecker |
||
11 | */ |
||
12 | private $functionChecker; |
||
13 | |||
14 | /** |
||
15 | * @param CliFunctionChecker $functionChecker |
||
16 | */ |
||
17 | public function __construct(CliFunctionChecker $functionChecker) |
||
21 | |||
22 | /** |
||
23 | * @param $path |
||
24 | * @param $args |
||
25 | */ |
||
26 | public function runCommand($path, $args) |
||
30 | |||
31 | public function isSupported() |
||
35 | } |
||
36 |