| 1 | <?php |
||
| 11 | class Processor |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var |
||
| 15 | */ |
||
| 16 | private $currentWorkingDirectory; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return mixed |
||
| 20 | */ |
||
| 21 | public function getCurrentWorkingDirectory() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param mixed $currentWorkingDirectory |
||
| 28 | */ |
||
| 29 | public function setCurrentWorkingDirectory($currentWorkingDirectory) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param $command |
||
| 36 | */ |
||
| 37 | public function execute($command) |
||
| 50 | } |
||
| 51 |