1 | <?php |
||
13 | class PHPDbgBinFile |
||
14 | { |
||
15 | /** @var string Realpath to the PHPDbg bin location */ |
||
16 | private $phpDbgBin; |
||
17 | |||
18 | /** |
||
19 | * PHPDbgBinFile constructor. |
||
20 | */ |
||
21 | 4 | public function __construct() |
|
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | * @throws \RuntimeException When PHPDBG is not available |
||
29 | */ |
||
30 | 3 | public function getPhpDbgBin(): string |
|
38 | |||
39 | 4 | public function isAvailable(): bool |
|
43 | |||
44 | 4 | private function getPhpDbgBinLocation(): string |
|
57 | } |
||
58 |