Skip to content

Commit d858093

Browse files
committed
Merge branch '4.4' into 5.4
* 4.4: [HttpClient] Fix the CS fix Workaround disabled "var_dump" [Serializer] Respect default context in DateTimeNormalizer::denormalize # Conflicts: # src/Symfony/Component/Debug/ErrorHandler.php # src/Symfony/Component/HttpClient/HttpClientTrait.php # src/Symfony/Component/HttpKernel/EventListener/DebugHandlersListener.php
2 parents 13e8e64 + 91c2abb commit d858093

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
@@ -57,7 +57,7 @@ public function __construct(callable $exceptionHandler = null, LoggerInterface $
5757
$deprecationLogger = $fileLinkFormat;
5858
}
5959

60-
$handler = set_exception_handler('var_dump');
60+
$handler = set_exception_handler('is_int');
6161
$this->earlyHandler = \is_array($handler) ? $handler[0] : null;
6262
restore_exception_handler();
6363

@@ -83,7 +83,7 @@ public function configure(object $event = null)
8383
}
8484
$this->firstCall = $this->hasTerminatedWithException = false;
8585

86-
$handler = set_exception_handler('var_dump');
86+
$handler = set_exception_handler('is_int');
8787
$handler = \is_array($handler) ? $handler[0] : null;
8888
restore_exception_handler();
8989

0 commit comments

Comments
 (0)