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 ( ba9d8d...0336ff )
by Cristian
27:37 queued 12:48
created
src/BackpackServiceProvider.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -65,20 +65,20 @@  discard block
 block discarded – undo
65 65
         include_once __DIR__.'/macros.php';
66 66
 
67 67
         // Bind the CrudPanel object to Laravel's service container
68
-        $this->app->scoped('crud', function ($app) {
68
+        $this->app->scoped('crud', function($app) {
69 69
             return new CrudPanel();
70 70
         });
71 71
 
72
-        $this->app->scoped('DatabaseSchema', function ($app) {
72
+        $this->app->scoped('DatabaseSchema', function($app) {
73 73
             return new DatabaseSchema();
74 74
         });
75 75
 
76
-        $this->app->singleton('BackpackViewNamespaces', function ($app) {
76
+        $this->app->singleton('BackpackViewNamespaces', function($app) {
77 77
             return new ViewNamespaces();
78 78
         });
79 79
 
80 80
         // Bind the widgets collection object to Laravel's service container
81
-        $this->app->singleton('widgets', function ($app) {
81
+        $this->app->singleton('widgets', function($app) {
82 82
             return new Collection();
83 83
         });
84 84
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $middleware_key = config('backpack.base.middleware_key');
95 95
         $middleware_class = config('backpack.base.middleware_class');
96 96
 
97
-        if (! is_array($middleware_class)) {
97
+        if (!is_array($middleware_class)) {
98 98
             $router->pushMiddlewareToGroup($middleware_key, $middleware_class);
99 99
 
100 100
             return;
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 
208 208
     protected function mergeConfigsFromDirectory($dir)
209 209
     {
210
-        $configs = scandir(__DIR__ . "/config/backpack/$dir/");
210
+        $configs = scandir(__DIR__."/config/backpack/$dir/");
211 211
         $configs = array_diff($configs, ['.', '..']);
212 212
 
213 213
         if (!count($configs)) {
@@ -216,8 +216,8 @@  discard block
 block discarded – undo
216 216
 
217 217
         foreach ($configs as $configFile) {
218 218
             $this->mergeConfigFrom(
219
-                __DIR__ . "/config/backpack/$dir/$configFile",
220
-                "backpack.$dir." . substr($configFile, 0, strrpos($configFile, '.'))
219
+                __DIR__."/config/backpack/$dir/$configFile",
220
+                "backpack.$dir.".substr($configFile, 0, strrpos($configFile, '.'))
221 221
             );
222 222
         }
223 223
     }
Please login to merge, or discard this patch.