Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Push — v6-using-themes-from-packages ( 524a5c )
by Cristian
11:46
created
src/ViewNamespaces.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public static function addFor(string $domain, $viewNamespaces)
30 30
     {
31 31
         foreach ((array) $viewNamespaces as $viewNamespace) {
32
-            if (! in_array($viewNamespace, self::getForDomain($domain))) {
32
+            if (!in_array($viewNamespace, self::getForDomain($domain))) {
33 33
                 self::$viewNamespaces[$domain][] = $viewNamespace;
34 34
             }
35 35
         }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     private static function getFromConfigFor(string $domain, $customConfigKey = null)
57 57
     {
58 58
         return config($customConfigKey ?? 'backpack.crud.view_namespaces.'.$domain) ??
59
-            [ config('backpack.base.view_namespace').$domain ] ;
59
+            [config('backpack.base.view_namespace').$domain];
60 60
     }
61 61
 
62 62
     /**
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public static function getViewPathsFor(string $domain, string $viewName)
86 86
     {
87
-        return array_map(function ($item) use ($viewName) {
87
+        return array_map(function($item) use ($viewName) {
88 88
             return $item.'.'.$viewName;
89 89
         }, self::getFor($domain));
90 90
     }
Please login to merge, or discard this patch.