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
Pull Request — main (#189)
by Cristian
16s
created
Category
src/Console/Commands/PageBackpackCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         $this->progressBlock("Creating view <fg=blue>resources/views/{$filePath}.blade.php</>");
74 74
 
75 75
         // check if the file already exists
76
-        if ((! $this->hasOption('force') || ! $this->option('force')) && $this->alreadyExists($filePath)) {
76
+        if ((!$this->hasOption('force') || !$this->option('force')) && $this->alreadyExists($filePath)) {
77 77
             $this->closeProgressBlock('Already existed', 'yellow');
78 78
 
79 79
             return false;
Please login to merge, or discard this patch.
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.