We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f988f8 commit 925e444Copy full SHA for 925e444
1 file changed
src/XdebugHandler.php
@@ -590,6 +590,11 @@ private function checkConfiguration(?string &$info): bool
590
return false;
591
}
592
593
+ if (!file_exists(PHP_BINARY)) {
594
+ $info = 'PHP_BINARY is not available';
595
+ return false;
596
+ }
597
+
598
if (extension_loaded('uopz') && !((bool) ini_get('uopz.disable'))) {
599
// uopz works at opcode level and disables exit calls
600
if (function_exists('uopz_allow_exit')) {
0 commit comments