| 1 | <?php |
||
| 21 | class Enabler |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var Command |
||
| 25 | */ |
||
| 26 | private $command; |
||
| 27 | |||
| 28 | public function __construct(Command $command) |
||
| 32 | |||
| 33 | public function functionExists($name) |
||
| 37 | |||
| 38 | public function operatingSystemIsNotWindows() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param $condition |
||
| 45 | * @param $message |
||
| 46 | */ |
||
| 47 | private function assert($condition, $message) |
||
| 57 | } |
||
| 58 |