Skip to content

Commit 1d62ad6

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 73615d3 + 1205999 commit 1d62ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Matcher/Dumper/StaticPrefixCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ private function getCommonPrefix(string $prefix, string $anotherPrefix): array
147147
$baseLength = \strlen($this->prefix);
148148
$end = min(\strlen($prefix), \strlen($anotherPrefix));
149149
$staticLength = null;
150-
set_error_handler([__CLASS__, 'handleError']);
150+
set_error_handler(self::handleError(...));
151151

152152
try {
153153
for ($i = $baseLength; $i < $end && $prefix[$i] === $anotherPrefix[$i]; ++$i) {

0 commit comments

Comments
 (0)