Skip to content

Commit 7da8ea2

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 d09878a + 952a8cb commit 7da8ea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Filesystem.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ private static function box(string $func, mixed ...$args): mixed
721721
self::assertFunctionExists($func);
722722

723723
self::$lastError = null;
724-
set_error_handler(__CLASS__.'::handleError');
724+
set_error_handler(self::handleError(...));
725725
try {
726726
return $func(...$args);
727727
} finally {

0 commit comments

Comments
 (0)