Skip to content

Commit 8c958b1

Browse files
Merge branch '6.4' into 7.0
* 6.4: [Mime] Fix lowest versions of deps [VarDumper] Fix calling scope detection inside magic accessors [Validator] add missing German translations fix deprecation versions update the Brevo SMTP host Remove \ReflectionProperty::setAccessible(true) calls [Serializer] Fix denormalizing abstract part headers in MimeMessageNormalizer Fix property must not be accessed before initialization on SymfonyRuntime::$input [Form] Remove an obsolete phpdoc comment [Webhook] Allow slash in webhook type Use more "First class callable syntax" + Normalize set_error_handler/set_exception_handler calls [FrameworkBundle][Workflow] Throw exception is workflow.xxx.transitions is not an array
2 parents 78a3fb7 + ad5325f commit 8c958b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ErrorHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public static function register(self $handler = null, bool $replace = true): sel
112112
{
113113
if (null === self::$reservedMemory) {
114114
self::$reservedMemory = str_repeat('x', 32768);
115-
register_shutdown_function(__CLASS__.'::handleFatalError');
115+
register_shutdown_function(self::handleFatalError(...));
116116
}
117117

118118
if ($handlerIsNew = null === $handler) {

0 commit comments

Comments
 (0)