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

Completed
Push — main ( fcecfb...cd193a )
by Pedro
39s queued 20s
created
src/Console/Commands/BuildBackpackCommand.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -35,14 +35,14 @@  discard block
 block discarded – undo
35 35
         // make a list of all models
36 36
         $models = $this->getModels(base_path('app'));
37 37
 
38
-        if (! count($models)) {
38
+        if (!count($models)) {
39 39
             $this->errorBlock('No models found.');
40 40
 
41 41
             return false;
42 42
         }
43 43
 
44 44
         foreach ($models as $model) {
45
-            $this->call('backpack:crud', ['name' => $model, '--validation' => $this->option('validation')]);
45
+            $this->call('backpack:crud', [ 'name' => $model, '--validation' => $this->option('validation') ]);
46 46
             $this->line('  <fg=gray>----------</>');
47 47
         }
48 48
 
@@ -51,14 +51,14 @@  discard block
 block discarded – undo
51 51
 
52 52
     private function getModels(string $path): array
53 53
     {
54
-        $out = [];
54
+        $out = [ ];
55 55
         $results = scandir($path);
56 56
 
57 57
         foreach ($results as $result) {
58 58
             $filepath = "$path/$result";
59 59
 
60 60
             // ignore `.` (dot) prefixed files
61
-            if ($result[0] === '.') {
61
+            if ($result[ 0 ] === '.') {
62 62
                 continue;
63 63
             }
64 64
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
             $result = $this->validateModelClass($class);
79 79
             if ($result) {
80
-                $out[] = $result;
80
+                $out[ ] = $result;
81 81
                 continue;
82 82
             }
83 83
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
             $result = $this->validateModelClass("$namespace\\$classname");
90 90
             if ($result) {
91
-                $out[] = $result;
91
+                $out[ ] = $result;
92 92
                 continue;
93 93
             }
94 94
         }
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
         try {
102 102
             $reflection = new \ReflectionClass($class);
103 103
 
104
-            if ($reflection->isSubclassOf(Model::class) && ! $reflection->isAbstract()) {
104
+            if ($reflection->isSubclassOf(Model::class) && !$reflection->isAbstract()) {
105 105
                 return Str::of($class)->afterLast('\\');
106 106
             }
107 107
         } catch (\Throwable$e) {
Please login to merge, or discard this patch.
src/Console/Commands/CrudControllerBackpackCommand.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         // Next, We will check to see if the class already exists. If it does, we don't want
59 59
         // to create the class and overwrite the user's code. So, we will bail out so the
60 60
         // code is untouched. Otherwise, we will continue generating this class' files.
61
-        if ((! $this->hasOption('force') || ! $this->option('force')) && $this->alreadyExists($this->getNameInput())) {
61
+        if ((!$this->hasOption('force') || !$this->option('force')) && $this->alreadyExists($this->getNameInput())) {
62 62
             $this->closeProgressBlock('Already existed', 'yellow');
63 63
 
64 64
             return false;
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     {
85 85
         $name = str_replace($this->laravel->getNamespace(), '', $name);
86 86
 
87
-        return $this->laravel['path'].'/'.str_replace('\\', '/', $name).'CrudController.php';
87
+        return $this->laravel[ 'path' ].'/'.str_replace('\\', '/', $name).'CrudController.php';
88 88
     }
89 89
 
90 90
     /**
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 
134 134
     protected function getAttributes($model)
135 135
     {
136
-        $attributes = [];
136
+        $attributes = [ ];
137 137
         $model = new $model();
138 138
 
139 139
         // if fillable was defined, use that as the attributes
@@ -159,25 +159,25 @@  discard block
 block discarded – undo
159 159
         $class = Str::afterLast($name, '\\');
160 160
         $model = "App\\Models\\$class";
161 161
 
162
-        if (! class_exists($model)) {
162
+        if (!class_exists($model)) {
163 163
             return $this;
164 164
         }
165 165
 
166 166
         $attributes = $this->getAttributes($model);
167
-        $fields = array_diff($attributes, ['id', 'created_at', 'updated_at', 'deleted_at']);
168
-        $columns = array_diff($attributes, ['id']);
167
+        $fields = array_diff($attributes, [ 'id', 'created_at', 'updated_at', 'deleted_at' ]);
168
+        $columns = array_diff($attributes, [ 'id' ]);
169 169
         $glue = PHP_EOL.'        ';
170 170
 
171 171
         // create an array with the needed code for defining fields
172 172
         $fields = collect($fields)
173
-            ->map(function ($field) {
173
+            ->map(function($field) {
174 174
                 return "CRUD::field('$field');";
175 175
             })
176 176
             ->join($glue);
177 177
 
178 178
         // create an array with the needed code for defining columns
179 179
         $columns = collect($columns)
180
-            ->map(function ($column) {
180
+            ->map(function($column) {
181 181
                 return "CRUD::column('$column');";
182 182
             })
183 183
             ->join($glue);
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     protected function replaceModel(&$stub, $name)
200 200
     {
201 201
         $class = str_replace($this->getNamespace($name).'\\', '', $name);
202
-        $stub = str_replace(['DummyClass', '{{ class }}', '{{class}}'], $this->buildClassName($name), $stub);
202
+        $stub = str_replace([ 'DummyClass', '{{ class }}', '{{class}}' ], $this->buildClassName($name), $stub);
203 203
 
204 204
         return $this;
205 205
     }
Please login to merge, or discard this patch.
src/Console/Commands/CrudFormOperationBackpackCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     {
46 46
         $name = str_replace($this->laravel->getNamespace(), '', $name);
47 47
 
48
-        return $this->laravel['path'].'/'.str_replace('\\', '/', $name).'Operation.php';
48
+        return $this->laravel[ 'path' ].'/'.str_replace('\\', '/', $name).'Operation.php';
49 49
     }
50 50
 
51 51
     /**
Please login to merge, or discard this patch.
src/Console/Commands/Views/WidgetBackpackCommand.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@
 block discarded – undo
58 58
     {
59 59
         if ($this->sourceViewNamespace) {
60 60
             $themePath = Str::contains($this->sourceViewNamespace, '::') ?
61
-                            Str::before($this->sourceViewNamespace, '::') :
62
-                            Str::beforeLast($this->sourceViewNamespace, '.');
61
+                            Str::before($this->sourceViewNamespace, '::') : Str::beforeLast($this->sourceViewNamespace, '.');
63 62
 
64 63
             $themePath = Str::replace('.', '/', $themePath);
65 64
 
Please login to merge, or discard this patch.
src/Console/Commands/Views/PublishOrCreateViewBackpackCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
                 $this->sourceFile = realpath(substr($from, 1));
106 106
             }
107 107
 
108
-            if (! $this->sourceFile) {
108
+            if (!$this->sourceFile) {
109 109
                 $this->errorProgressBlock();
110 110
                 $this->note("$this->type '$from' does not exist!", 'red');
111 111
                 $this->newLine();
Please login to merge, or discard this patch.
src/Console/Commands/CrudBackpackCommand.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,19 +47,19 @@  discard block
 block discarded – undo
47 47
 
48 48
         // Validate validation option
49 49
         $validation = $this->handleValidationOption();
50
-        if (! $validation) {
50
+        if (!$validation) {
51 51
             return false;
52 52
         }
53 53
 
54 54
         // Create the CRUD Model and show output
55
-        $this->call('backpack:crud-model', ['name' => $name]);
55
+        $this->call('backpack:crud-model', [ 'name' => $name ]);
56 56
 
57 57
         // Create the CRUD Controller and show output
58
-        $this->call('backpack:crud-controller', ['name' => $name, '--validation' => $validation]);
58
+        $this->call('backpack:crud-controller', [ 'name' => $name, '--validation' => $validation ]);
59 59
 
60 60
         // Create the CRUD Request and show output
61 61
         if ($validation === 'request') {
62
-            $this->call('backpack:crud-request', ['name' => $name]);
62
+            $this->call('backpack:crud-request', [ 'name' => $name ]);
63 63
         }
64 64
 
65 65
         // Create the CRUD route
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         
83 83
         $url = Str::of(config('app.url'))
84 84
             ->finish('/')
85
-            ->when($routePrefix !== '', function ($string) use ($routePrefix) {
85
+            ->when($routePrefix !== '', function($string) use ($routePrefix) {
86 86
                 return $string->append($routePrefix)->finish('/');
87 87
             })
88 88
             ->append($nameKebab);
@@ -99,24 +99,24 @@  discard block
 block discarded – undo
99 99
      */
100 100
     private function handleValidationOption()
101 101
     {
102
-        $options = ['request', 'array', 'field'];
102
+        $options = [ 'request', 'array', 'field' ];
103 103
 
104 104
         // Validate validation option
105 105
         $validation = $this->option('validation');
106 106
 
107
-        if (! $validation) {
107
+        if (!$validation) {
108 108
             $validation = $this->askHint(
109 109
                 'How would you like to define your validation rules, for the Create and Update operations?', [
110 110
                     'More info at <fg=blue>https://backpackforlaravel.com/docs/5.x/crud-operation-create#validation</>',
111 111
                     'Valid options are <fg=blue>request</>, <fg=blue>array</> or <fg=blue>field</>',
112
-                ], $options[0]);
112
+                ], $options[ 0 ]);
113 113
 
114
-            if (! $this->option('no-interaction')) {
114
+            if (!$this->option('no-interaction')) {
115 115
                 $this->deleteLines(5);
116 116
             }
117 117
         }
118 118
 
119
-        if (! in_array($validation, $options)) {
119
+        if (!in_array($validation, $options)) {
120 120
             $this->errorBlock("The validation must be request, array or field. '$validation' is not valid.");
121 121
 
122 122
             return false;
Please login to merge, or discard this patch.