Passed
Push — master ( ea0360...f9c2f3 )
by Alex
02:36
created
src/NovaCategorise.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 {
13 13
     public static function availableResourcesGrouped(Request $request)
14 14
     {
15
-        return collect(self::availableResources($request))->filter(function ($resource) {
15
+        return collect(self::availableResources($request))->filter(function($resource) {
16 16
             return $resource::$displayInNavigation;
17
-        })->groupBy(function ($resource) {
17
+        })->groupBy(function($resource) {
18 18
             if (property_exists($resource, 'category')) {
19 19
                 return __(ucwords($resource::$category));
20 20
             }
Please login to merge, or discard this patch.