Skip to content

Commit e94b59c

Browse files
committed
Merge branch '6.1' into 6.2
* 6.1: [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
2 parents 6f9878d + e70b64b commit e94b59c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

EventListener/DebugHandlersListener.php

+2-2
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)