1 | <?php declare(strict_types=1); |
||
11 | class ProcessValueProvider implements ValueProvider |
||
12 | { |
||
13 | /** |
||
14 | * @var Process |
||
15 | */ |
||
16 | private $process; |
||
17 | |||
18 | public function __construct(Process $process) |
||
22 | |||
23 | /** |
||
24 | * @return mixed |
||
25 | */ |
||
26 | public function getValue(): string |
||
32 | |||
33 | public function getCommand(): string |
||
37 | } |
||
38 |