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 13ae211 commit 62b67cbCopy full SHA for 62b67cb
src/Exception/ErrorException.php
@@ -11,7 +11,6 @@
11
use function array_slice;
12
use function in_array;
13
use function function_exists;
14
-use function ini_get;
15
16
/**
17
* `ErrorException` represents a PHP error.
@@ -150,6 +149,6 @@ private function isXdebugStackAvailable(): bool
150
149
}
151
152
// Xdebug 3 and later, proper mode is required
153
- return str_contains((string) ini_get('xdebug.mode'), 'develop');
+ return str_contains((string) \ini_get('xdebug.mode'), 'develop');
154
155
0 commit comments