Skip to content

Commit 79a9d5d

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: Fix colors for 4.4 Stand with Ukraine [Runtime] Fix passing $debug parameter to `ErrorHandler` [FrameworkBundle] Ensure container is reset between tests [HttpKernel] fix using Target with controller args Remove blocking test for adding support for placeholders in EmumNode in 6.1 [FrameworkBundle] Fix compiler passes processing a container twice when it's loaded from the debug dump [HttpKernel] Fix advertizing deprecations for *TestSessionListener
2 parents af6571d + dc22a28 commit 79a9d5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Internal/SymfonyErrorHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static function register(bool $debug): void
2929
if (class_exists(ErrorHandler::class)) {
3030
DebugClassLoader::enable();
3131
restore_error_handler();
32-
ErrorHandler::register(new ErrorHandler(new BufferingLogger(), true));
32+
ErrorHandler::register(new ErrorHandler(new BufferingLogger(), $debug));
3333
}
3434
}
3535
}

0 commit comments

Comments
 (0)