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) { |
||
20 | |||
21 | /** |
||
22 | * @param $path |
||
23 | * @param $args |
||
24 | */ |
||
25 | public function runCommand($path, $args) |
||
29 | |||
30 | public function isSupported() |
||
34 | } |
||
35 |