Skip to content

Commit 93ee055

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: [Messenger] Fix function name in TriggerSql on postgresql bridge to support table name with schema [HttpClient] Fix the CS fix Workaround disabled "var_dump" [Serializer] Respect default context in DateTimeNormalizer::denormalize # Conflicts: # src/Symfony/Component/ErrorHandler/ErrorHandler.php # src/Symfony/Component/HttpKernel/EventListener/DebugHandlersListener.php
2 parents c4c4066 + d858093 commit 93ee055

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

EventListener/DebugHandlersListener.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class DebugHandlersListener implements EventSubscriberInterface
5151
*/
5252
public function __construct(callable $exceptionHandler = null, LoggerInterface $logger = null, array|int|null $levels = \E_ALL, ?int $throwAt = \E_ALL, bool $scream = true, bool $scope = true, LoggerInterface $deprecationLogger = null)
5353
{
54-
$handler = set_exception_handler('var_dump');
54+
$handler = set_exception_handler('is_int');
5555
$this->earlyHandler = \is_array($handler) ? $handler[0] : null;
5656
restore_exception_handler();
5757

@@ -77,7 +77,7 @@ public function configure(object $event = null)
7777
}
7878
$this->firstCall = $this->hasTerminatedWithException = false;
7979

80-
$handler = set_exception_handler('var_dump');
80+
$handler = set_exception_handler('is_int');
8181
$handler = \is_array($handler) ? $handler[0] : null;
8282
restore_exception_handler();
8383

0 commit comments

Comments
 (0)