Skip to content

Commit

Permalink
Merge branch '6.4' into 7.0
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
nicolas-grekas committed Jul 27, 2023
2 parents d09878a + 952a8cb commit 7da8ea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Filesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ private static function box(string $func, mixed ...$args): mixed
self::assertFunctionExists($func);

self::$lastError = null;
set_error_handler(__CLASS__.'::handleError');
set_error_handler(self::handleError(...));
try {
return $func(...$args);
} finally {
Expand Down

0 comments on commit 7da8ea2

Please sign in to comment.