GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( fdafab...aa2657 )
by butschster
06:04
created
src/Form/Element/File.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -26,16 +26,16 @@  discard block
 block discarded – undo
26 26
     {
27 27
         $routeName = 'admin.form.element.'.static::$route;
28 28
 
29
-        if (! $router->has($routeName)) {
30
-            $router->post('{adminModel}/'.static::$route.'/{field}/{id?}', ['as' => $routeName, function (
29
+        if (!$router->has($routeName)) {
30
+            $router->post('{adminModel}/'.static::$route.'/{field}/{id?}', [ 'as' => $routeName, function(
31 31
                 Request $request,
32 32
                 ModelConfigurationInterface $model,
33 33
                 $field,
34 34
                 $id = null
35 35
             ) {
36
-                if (! is_null($id)) {
36
+                if (!is_null($id)) {
37 37
                     $item = $model->getRepository()->find($id);
38
-                    if (is_null($item) || ! $model->isEditable($item)) {
38
+                    if (is_null($item) || !$model->isEditable($item)) {
39 39
                         return new JsonResponse([
40 40
                             'message' => trans('lang.message.access_denied'),
41 41
                         ], 403);
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
                     $form = $model->fireEdit($id);
45 45
                 } else {
46
-                    if (! $model->isCreatable()) {
46
+                    if (!$model->isCreatable()) {
47 47
                         return new JsonResponse([
48 48
                             'message' => trans('lang.message.access_denied'),
49 49
                         ], 403);
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
                     $form = $model->fireCreate();
53 53
                 }
54 54
 
55
-                $messages = [];
56
-                $labels = [];
55
+                $messages = [ ];
56
+                $labels = [ ];
57 57
                 $rules = static::defaultUploadValidationRules();
58 58
 
59
-                if (! is_null($element = $form->getElement($field))) {
59
+                if (!is_null($element = $form->getElement($field))) {
60 60
                     $rules = $element->getUploadValidationRules();
61 61
                     $messages = $element->getUploadValidationMessages();
62 62
                     $labels = $element->getUploadValidationLabels();
@@ -76,14 +76,14 @@  discard block
 block discarded – undo
76 76
                 $file = $request->file('file');
77 77
 
78 78
                 /** @var File $element */
79
-                if (! is_null($element = $form->getElement($field))) {
79
+                if (!is_null($element = $form->getElement($field))) {
80 80
                     $filename = $element->getUploadFileName($file);
81 81
                     $path = $element->getUploadPath($file);
82 82
                     $settings = $element->getUploadSettings();
83 83
                 } else {
84 84
                     $filename = static::defaultUploadFilename($file);
85 85
                     $path = static::defaultUploadPath($file);
86
-                    $settings = [];
86
+                    $settings = [ ];
87 87
                 }
88 88
 
89 89
                 static::saveFile($file, public_path($path), $filename, $settings);
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                     'url' => asset($value),
95 95
                     'value' => $value,
96 96
                 ]);
97
-            }]);
97
+            } ]);
98 98
         }
99 99
     }
100 100
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     protected static function defaultUploadValidationRules()
143 143
     {
144 144
         return [
145
-            'file' => ['required', 'file'],
145
+            'file' => [ 'required', 'file' ],
146 146
         ];
147 147
     }
148 148
 
@@ -159,21 +159,21 @@  discard block
 block discarded – undo
159 159
     /**
160 160
      * @var array
161 161
      */
162
-    protected $uploadSettings = [];
162
+    protected $uploadSettings = [ ];
163 163
 
164 164
     /**
165 165
      * @var array
166 166
      */
167
-    protected $uploadValidationRules = ['required', 'file'];
167
+    protected $uploadValidationRules = [ 'required', 'file' ];
168 168
 
169 169
     /**
170 170
      * @return array
171 171
      */
172 172
     public function getUploadValidationMessages()
173 173
     {
174
-        $messages = [];
174
+        $messages = [ ];
175 175
         foreach ($this->validationMessages as $rule => $message) {
176
-            $messages["file.{$rule}"] = $message;
176
+            $messages[ "file.{$rule}" ] = $message;
177 177
         }
178 178
 
179 179
         return $messages;
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      */
185 185
     public function getUploadValidationLabels()
186 186
     {
187
-        return ['file' => $this->getLabel()];
187
+        return [ 'file' => $this->getLabel() ];
188 188
     }
189 189
 
190 190
     /**
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      */
193 193
     public function getUploadValidationRules()
194 194
     {
195
-        return ['file' => array_unique($this->uploadValidationRules)];
195
+        return [ 'file' => array_unique($this->uploadValidationRules) ];
196 196
     }
197 197
 
198 198
     /**
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
      */
203 203
     public function getUploadPath(UploadedFile $file)
204 204
     {
205
-        if (! is_callable($this->uploadPath)) {
205
+        if (!is_callable($this->uploadPath)) {
206 206
             return static::defaultUploadPath($file);
207 207
         }
208 208
 
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
      */
229 229
     public function getUploadFileName(UploadedFile $file)
230 230
     {
231
-        if (! is_callable($this->uploadFileName)) {
231
+        if (!is_callable($this->uploadFileName)) {
232 232
             return static::defaultUploadFilename($file);
233 233
         }
234 234
 
@@ -279,11 +279,11 @@  discard block
 block discarded – undo
279 279
      */
280 280
     public function addValidationRule($rule, $message = null)
281 281
     {
282
-        $uploadRules = ['file', 'image', 'mime', 'size', 'dimensions', 'max', 'min', 'between'];
282
+        $uploadRules = [ 'file', 'image', 'mime', 'size', 'dimensions', 'max', 'min', 'between' ];
283 283
 
284 284
         foreach ($uploadRules as $uploadRule) {
285 285
             if (strpos($rule, $uploadRule) !== false) {
286
-                $this->uploadValidationRules[] = $rule;
286
+                $this->uploadValidationRules[ ] = $rule;
287 287
 
288 288
                 if (is_null($message)) {
289 289
                     return $this;
Please login to merge, or discard this patch.