1 | <?php |
||
20 | class Process implements ProcessInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $command; |
||
26 | |||
27 | /** |
||
28 | * Process constructor. |
||
29 | * @param string $command |
||
30 | */ |
||
31 | public function __construct(string $command) |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getCommand(): string |
||
43 | } |
||
44 |