8000 Merge branch '4.4' · PhilETaylor/symfony@debf92a · GitHub
[go: up one dir, main page]

Skip to content

Commit debf92a

Browse files
Merge branch '4.4'
* 4.4: [OptionsResolve] Revert change in tests for a not-merged change in code [HttpClient] fix handling of 3xx with no Location header - ignore Content-Length when no body is expected [Workflow] Made the configuration more robust for the 'property' key [Security/Core] make NativePasswordEncoder use sodium to validate passwords when possible [FrameworkBundle] make SodiumVault report bad decryption key accurately cs fix [Security] Allow to set a fixed algorithm [Security/Core] make encodedLength computation more generic [Security/Core] add fast path when encoded password cannot match anything symfony#30432 fix an error message fix paths to detect code owners [HttpClient] ignore the body of responses to HEAD requests [Validator] Ensure numeric subpaths do not cause errors on PHP 7.4 [SecurityBundle] Fix wrong assertion Remove unused local variables in tests [Yaml][Parser] Remove the getLastLineNumberBeforeDeprecation() internal unused method Make sure to collect child forms created on *_SET_DATA events [WebProfilerBundle] Improve display in Email panel for dark theme do not render errors for checkboxes twice
2 parents deae4ac + 0f85556 commit debf92a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DebugClassLoader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ private function darwinRealpath(string $real): string
751751
}
752752

753753
if (isset($dirFiles[$file])) {
754-
return $real .= $dirFiles[$file];
754+
return $real.$dirFiles[$file];
755755
}
756756

757757
$kFile = strtolower($file);
@@ -770,7 +770,7 @@ private function darwinRealpath(string $real): string
770770
self::$darwinCache[$kDir][1] = $dirFiles;
771771
}
772772

773-
return $real .= $dirFiles[$kFile];
773+
return $real.$dirFiles[$kFile];
774774
}
775775

776776
/**

0 commit comments

Comments
 (0)
0