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 bfa73b6 commit e44141fCopy full SHA for e44141f
src/HttpsTrait.php
@@ -35,10 +35,10 @@ private function isGoingToBeForcedToHttps(RouteMatch|RouteResult|null $match = n
35
36
if ($this->config['force_all_routes']) {
37
return ! (! empty($this->config['exclude_specific_routes'])
38
- && in_array($matchedRouteName, $this->config['exclude_specific_routes']));
+ && in_array($matchedRouteName, $this->config['exclude_specific_routes'], true));
39
}
40
41
- return in_array($matchedRouteName, $this->config['force_specific_routes']);
+ return in_array($matchedRouteName, $this->config['force_specific_routes'], true);
42
43
44
/**
0 commit comments