We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67a3bb7 commit bf9661fCopy full SHA for bf9661f
src/HttpsTrait.php
@@ -28,7 +28,7 @@ private function isSchemeHttps(string $uriScheme): bool
28
private function isGoingToBeForcedToHttps(RouteMatch|RouteResult|null $match = null): bool
29
{
30
if ($match === null || ($match instanceof RouteResult && $match->isFailure())) {
31
- return (bool) $this->config['allow_404'] ?? false;
+ return (bool) ($this->config['allow_404'] ?? false);
32
}
33
34
$matchedRouteName = $match->getMatchedRouteName();
0 commit comments