File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments