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 de6124d commit 876b630Copy full SHA for 876b630
Resources/functions/dump.php
@@ -45,7 +45,7 @@ function dump(mixed ...$vars): mixed
45
if (!function_exists('dd')) {
46
function dd(mixed ...$vars): never
47
{
48
- if (!\in_array(\PHP_SAPI, ['cli', 'phpdbg', 'embed'], true) && !headers_sent()) {
+ if (!in_array(\PHP_SAPI, ['cli', 'phpdbg', 'embed'], true) && !headers_sent()) {
49
header('HTTP/1.1 500 Internal Server Error');
50
}
51
0 commit comments