From 9f64ee2caa684f92f3adab9a94ba632444a2dc2a Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Mon, 20 Mar 2023 11:58:07 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Compass.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compass.php b/src/Compass.php index 84be5e0..c8d8807 100644 --- a/src/Compass.php +++ b/src/Compass.php @@ -69,7 +69,7 @@ protected static function filterRoute(array $route) { $routeRules = config('compass.routes'); - if ((Str::is($routeRules['exclude'], $route['name'])) || + if (Str::is($routeRules['exclude'], $route['name']) || Str::is($routeRules['exclude'], $route['uri']) || ! Str::is($routeRules['domains'], $route['domain']) || ! Str::is($routeRules['prefixes'], $route['uri'])) {