Skip to content

Commit 62b67cb

Browse files
committed
fix
1 parent 13ae211 commit 62b67cb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Exception/ErrorException.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use function array_slice;
1212
use function in_array;
1313
use function function_exists;
14-
use function ini_get;
1514

1615
/**
1716
* `ErrorException` represents a PHP error.
@@ -150,6 +149,6 @@ private function isXdebugStackAvailable(): bool
150149
}
151150

152151
// Xdebug 3 and later, proper mode is required
153-
return str_contains((string) ini_get('xdebug.mode'), 'develop');
152+
return str_contains((string) \ini_get('xdebug.mode'), 'develop');
154153
}
155154
}

0 commit comments

Comments
 (0)