Skip to content

Commit 90a79e5

Browse files
committed
cs fix
1 parent 31a5aa5 commit 90a79e5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/HttpsTrait.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,17 @@ private function isGoingToBeForcedToHttps($match = null): bool
4040
$matchedRouteName = $match->getMatchedRouteName();
4141

4242
if ($this->config['force_all_routes']) {
43-
if (! empty($this->config['exclude_specific_routes'])
44-
&& \in_array($matchedRouteName, $this->config['exclude_specific_routes'])) {
43+
if (
44+
! empty($this->config['exclude_specific_routes'])
45+
&& in_array($matchedRouteName, $this->config['exclude_specific_routes'])
46+
) {
4547
return false;
4648
}
4749

4850
return true;
4951
}
5052

51-
if (! \in_array($matchedRouteName, $this->config['force_specific_routes'])) {
53+
if (! in_array($matchedRouteName, $this->config['force_specific_routes'])) {
5254
return false;
5355
}
5456

0 commit comments

Comments
 (0)