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 — fix-l10-password-reset ( 8b4b38...3f41b3 )
by Pedro
20:12 queued 05:14
created
src/BackpackServiceProvider.php 1 patch
Spacing   +7 added lines, -7 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;
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
         $operationConfigs = scandir(__DIR__.'/config/backpack/operations/');
211 211
         $operationConfigs = array_diff($operationConfigs, ['.', '..']);
212 212
 
213
-        if (! count($operationConfigs)) {
213
+        if (!count($operationConfigs)) {
214 214
             return;
215 215
         }
216 216
 
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
         $laravelAuthPasswordBrokers = app()->config['auth.passwords'];
260 260
 
261 261
         $firstBrokerTable = collect($laravelAuthPasswordBrokers)
262
-                                ->filter(function ($item) {
262
+                                ->filter(function($item) {
263 263
                                     return isset($item['table']);
264 264
                                 })->first()['table'];
265 265
 
Please login to merge, or discard this patch.