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
Branch master (728916)
by Dave
01:29
created
src/Http/Controllers/AdminController.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 
61 61
         $admin->navigation()->setCurrentUrl($request->getUri());
62 62
 
63
-        if (! $this->breadcrumbs->exists('home')) {
64
-            $this->breadcrumbs->register('home', function (Generator $breadcrumbs) {
63
+        if (!$this->breadcrumbs->exists('home')) {
64
+            $this->breadcrumbs->register('home', function(Generator $breadcrumbs) {
65 65
                 $breadcrumbs->push(trans('sleeping_owl::lang.dashboard'), route('admin.dashboard'));
66 66
             });
67 67
         }
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      */
119 119
     public function getDisplay(ModelConfigurationInterface $model)
120 120
     {
121
-        if (! $model->isDisplayable()) {
121
+        if (!$model->isDisplayable()) {
122 122
             abort(404);
123 123
         }
124 124
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      */
139 139
     public function getCreate(ModelConfigurationInterface $model)
140 140
     {
141
-        if (! $model->isCreatable()) {
141
+        if (!$model->isCreatable()) {
142 142
             abort(404);
143 143
         }
144 144
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public function postStore(ModelConfigurationInterface $model, Request $request)
160 160
     {
161
-        if (! $model->isCreatable()) {
161
+        if (!$model->isCreatable()) {
162 162
             abort(404);
163 163
         }
164 164
 
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
             $redirectPolicy = $model->getRedirect();
197 197
 
198 198
             /* Make redirect when use in model config && Fix editable redirect */
199
-            if ($redirectPolicy->get('create') == 'display' || ! $model->isEditable($newModel)) {
199
+            if ($redirectPolicy->get('create') == 'display' || !$model->isEditable($newModel)) {
200 200
                 $redirectUrl = $model->getDisplayUrl();
201 201
             }
202 202
 
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
     {
236 236
         $item = $model->getRepository()->find($id);
237 237
 
238
-        if (is_null($item) || ! $model->isEditable($item)) {
238
+        if (is_null($item) || !$model->isEditable($item)) {
239 239
             abort(404);
240 240
         }
241 241
 
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
         $editForm = $model->fireEdit($id);
264 264
         $item = $editForm->getModel();
265 265
 
266
-        if (is_null($item) || ! $model->isEditable($item)) {
266
+        if (is_null($item) || !$model->isEditable($item)) {
267 267
             abort(404);
268 268
         }
269 269
 
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
 
343 343
         /* @var ColumnEditableInterface|null $column */
344 344
         if (is_callable([$display, 'getColumns'])) {
345
-            $column = $display->getColumns()->all()->filter(function ($column) use ($field) {
345
+            $column = $display->getColumns()->all()->filter(function($column) use ($field) {
346 346
                 return ($column instanceof ColumnEditableInterface) && $field == $column->getName();
347 347
             })->first();
348 348
         } else {
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
                     $content = $tab->getContent();
352 352
 
353 353
                     if ($content instanceof DisplayTable) {
354
-                        $column = $content->getColumns()->all()->filter(function ($column) use ($field) {
354
+                        $column = $content->getColumns()->all()->filter(function($column) use ($field) {
355 355
                             return ($column instanceof ColumnEditableInterface) && $field == $column->getName();
356 356
                         })->first();
357 357
                     }
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
 
361 361
                             //Return data-table if inside FormElements
362 362
                             if ($element instanceof DisplayTable) {
363
-                                $column = $element->getColumns()->all()->filter(function ($column) use ($field) {
363
+                                $column = $element->getColumns()->all()->filter(function($column) use ($field) {
364 364
                                     return ($column instanceof ColumnEditableInterface) && $field == $column->getName();
365 365
                                 })->first();
366 366
                             }
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
                             if ($element instanceof Column) {
370 370
                                 foreach ($element->getElements() as $columnElement) {
371 371
                                     if ($columnElement instanceof DisplayTable) {
372
-                                        $column = $columnElement->getColumns()->all()->filter(function ($column) use ($field) {
372
+                                        $column = $columnElement->getColumns()->all()->filter(function($column) use ($field) {
373 373
                                             return ($column instanceof ColumnEditableInterface) && $field == $column->getName();
374 374
                                         })->first();
375 375
                                     }
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
         $repository = $model->getRepository();
389 389
         $item = $repository->find($id);
390 390
 
391
-        if (is_null($item) || ! $model->isEditable($item)) {
391
+        if (is_null($item) || !$model->isEditable($item)) {
392 392
             abort(404);
393 393
         }
394 394
 
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
     {
414 414
         $item = $model->getRepository()->find($id);
415 415
 
416
-        if (is_null($item) || ! $model->isDeletable($item)) {
416
+        if (is_null($item) || !$model->isDeletable($item)) {
417 417
             abort(404);
418 418
         }
419 419
 
@@ -442,13 +442,13 @@  discard block
 block discarded – undo
442 442
      */
443 443
     public function deleteDestroy(ModelConfigurationInterface $model, Request $request, $id)
444 444
     {
445
-        if (! $model->isRestorableModel()) {
445
+        if (!$model->isRestorableModel()) {
446 446
             abort(404);
447 447
         }
448 448
 
449 449
         $item = $model->getRepository()->findOnlyTrashed($id);
450 450
 
451
-        if (is_null($item) || ! $model->isRestorable($item)) {
451
+        if (is_null($item) || !$model->isRestorable($item)) {
452 452
             abort(404);
453 453
         }
454 454
 
@@ -477,13 +477,13 @@  discard block
 block discarded – undo
477 477
      */
478 478
     public function postRestore(ModelConfigurationInterface $model, Request $request, $id)
479 479
     {
480
-        if (! $model->isRestorableModel()) {
480
+        if (!$model->isRestorableModel()) {
481 481
             abort(404);
482 482
         }
483 483
 
484 484
         $item = $model->getRepository()->findOnlyTrashed($id);
485 485
 
486
-        if (is_null($item) || ! $model->isRestorable($item)) {
486
+        if (is_null($item) || !$model->isRestorable($item)) {
487 487
             abort(404);
488 488
         }
489 489
 
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
      */
569 569
     protected function registerBreadcrumb($title, $parent)
570 570
     {
571
-        $this->breadcrumbs->register('render', function (Generator $breadcrumbs) use ($title, $parent) {
571
+        $this->breadcrumbs->register('render', function(Generator $breadcrumbs) use ($title, $parent) {
572 572
             $breadcrumbs->parent($parent);
573 573
             $breadcrumbs->push($title);
574 574
         });
@@ -584,8 +584,8 @@  discard block
 block discarded – undo
584 584
         $this->breadCrumbsData = $this->breadCrumbsData + (array) $model->getBreadCrumbs();
585 585
 
586 586
         foreach ($this->breadCrumbsData as  $breadcrumb) {
587
-            if (! $this->breadcrumbs->exists($breadcrumb['id'])) {
588
-                $this->breadcrumbs->register($breadcrumb['id'], function (Generator $breadcrumbs) use ($breadcrumb) {
587
+            if (!$this->breadcrumbs->exists($breadcrumb['id'])) {
588
+                $this->breadcrumbs->register($breadcrumb['id'], function(Generator $breadcrumbs) use ($breadcrumb) {
589 589
                     $breadcrumbs->parent($breadcrumb['parent']);
590 590
                     $breadcrumbs->push($breadcrumb['title'], $breadcrumb['url']);
591 591
                 });
Please login to merge, or discard this patch.
src/Form/Buttons/Delete.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             return false;
41 41
         }
42 42
 
43
-        $this->show = ! $this->isTrashed() && $this->getModelConfiguration()->isDeletable($this->getModel());
43
+        $this->show = !$this->isTrashed() && $this->getModelConfiguration()->isDeletable($this->getModel());
44 44
 
45 45
         return parent::canShow();
46 46
     }
Please login to merge, or discard this patch.
src/Form/Buttons/Restore.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function canShow()
38 38
     {
39
-        if (is_null($this->getModel()->getKey()) || ! $this->show) {
39
+        if (is_null($this->getModel()->getKey()) || !$this->show) {
40 40
             return false;
41 41
         }
42 42
 
Please login to merge, or discard this patch.
src/Form/FormDefault.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -100,11 +100,11 @@  discard block
 block discarded – undo
100 100
 
101 101
         parent::initialize();
102 102
 
103
-        if (! $this->hasHtmlAttribute('enctype')) {
103
+        if (!$this->hasHtmlAttribute('enctype')) {
104 104
             // Try to find upload element
105
-            $this->getElements()->each(function ($element) {
105
+            $this->getElements()->each(function($element) {
106 106
                 // Try to get nested - will be implemented
107
-                if ($element instanceof Upload && ! $this->hasHtmlAttribute('enctype')) {
107
+                if ($element instanceof Upload && !$this->hasHtmlAttribute('enctype')) {
108 108
                     $this->setHtmlAttribute('enctype', 'multipart/form-data');
109 109
                 }
110 110
             });
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
      */
210 210
     public function setItems($items)
211 211
     {
212
-        if (! is_array($items)) {
212
+        if (!is_array($items)) {
213 213
             $items = func_get_args();
214 214
         }
215 215
 
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
      */
237 237
     public function setId($id)
238 238
     {
239
-        if (is_null($this->id) && ! is_null($id) && ($model = $this->getRepository()->find($id))) {
239
+        if (is_null($this->id) && !is_null($id) && ($model = $this->getRepository()->find($id))) {
240 240
             $this->id = $id;
241 241
 
242 242
             parent::setModel($model);
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
      */
298 298
     public function saveForm(\Illuminate\Http\Request $request, ModelConfigurationInterface $modelConfiguration = null)
299 299
     {
300
-        if (! $this->validModelConfiguration($modelConfiguration)) {
300
+        if (!$this->validModelConfiguration($modelConfiguration)) {
301 301
             return false;
302 302
         }
303 303
 
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
     protected function saveBelongsToRelations(Model $model)
338 338
     {
339 339
         foreach ($model->getRelations() as $name => $relation) {
340
-            if ($model->{$name}() instanceof BelongsTo && ! is_null($relation)) {
340
+            if ($model->{$name}() instanceof BelongsTo && !is_null($relation)) {
341 341
                 $relation->save();
342 342
                 $model->{$name}()->associate($relation);
343 343
             }
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
     protected function saveHasOneRelations(Model $model)
353 353
     {
354 354
         foreach ($model->getRelations() as $name => $relation) {
355
-            if ($model->{$name}() instanceof HasOneOrMany && ! is_null($relation)) {
355
+            if ($model->{$name}() instanceof HasOneOrMany && !is_null($relation)) {
356 356
                 if (is_array($relation) || $relation instanceof \Traversable) {
357 357
                     $model->{$name}()->saveMany($relation);
358 358
                 } else {
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
      */
371 371
     public function validateForm(\Illuminate\Http\Request $request, ModelConfigurationInterface $modelConfiguration = null)
372 372
     {
373
-        if (! $this->validModelConfiguration($modelConfiguration)) {
373
+        if (!$this->validModelConfiguration($modelConfiguration)) {
374 374
             return;
375 375
         }
376 376
 
Please login to merge, or discard this patch.
src/Form/Element/Wysiwyg.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $config = $editor->getConfig();
63 63
         $config->set($this->parameters);
64 64
 
65
-        if (! $this->hasHtmlAttribute('id')) {
65
+        if (!$this->hasHtmlAttribute('id')) {
66 66
             $this->setHtmlAttribute('id', $this->getName());
67 67
         }
68 68
 
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
 
71 71
         $params = collect($this->parameters);
72 72
 
73
-        if (! $params->has('uploadUrl')) {
73
+        if (!$params->has('uploadUrl')) {
74 74
             $this->parameters['uploadUrl'] = route('admin.ckeditor.upload');
75 75
         }
76 76
 
77
-        if (! $params->has('filebrowserUploadUrl')) {
77
+        if (!$params->has('filebrowserUploadUrl')) {
78 78
             $this->parameters['filebrowserUploadUrl'] = route('admin.ckeditor.upload');
79 79
         }
80 80
     }
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      */
180 180
     public function setModelAttribute($value)
181 181
     {
182
-        if (! empty($this->filteredFieldKey)) {
182
+        if (!empty($this->filteredFieldKey)) {
183 183
             parent::setModelAttribute($value);
184 184
 
185 185
             $this->setModelAttributeKey($this->filteredFieldKey);
Please login to merge, or discard this patch.
src/Form/Element/DateTime.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     public function getValueFromModel()
80 80
     {
81 81
         $value = parent::getValueFromModel();
82
-        if (! empty($value)) {
82
+        if (!empty($value)) {
83 83
             return $this->parseValue($value);
84 84
         }
85 85
     }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public function setModelAttribute($value)
113 113
     {
114
-        $value = ! empty($value)
114
+        $value = !empty($value)
115 115
             ? Carbon::createFromFormat($this->getPickerFormat(), $value, $this->getTimezone())
116 116
                     ->timezone(config('app.timezone'))->format($this->getFormat())
117 117
             : null;
Please login to merge, or discard this patch.
src/Form/Element/SelectAjax.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     {
24 24
         parent::__construct($path, $label);
25 25
 
26
-        $this->setLoadOptionsQueryPreparer(function ($item, Builder $query) {
26
+        $this->setLoadOptionsQueryPreparer(function($item, Builder $query) {
27 27
             $repository = app(RepositoryInterface::class);
28 28
             $repository->setModel($this->getModelForOptions());
29 29
             $key = $repository->getModel()->getKeyName();
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     {
40 40
         $routeName = 'admin.form.element.'.static::$route;
41 41
 
42
-        if (! $router->has($routeName)) {
42
+        if (!$router->has($routeName)) {
43 43
             $router->post('{adminModel}/'.static::$route.'/{field}/{id?}', [
44 44
                 'as'   => $routeName,
45 45
                 'uses' => 'SleepingOwl\Admin\Http\Controllers\FormElementController@selectSearch',
Please login to merge, or discard this patch.
src/Form/Element/MultiSelect.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
         array $values
196 196
     ) {
197 197
         foreach ($values as $i => $value) {
198
-            if (! array_key_exists($value, $this->getOptions()) && $this->isTaggable()) {
198
+            if (!array_key_exists($value, $this->getOptions()) && $this->isTaggable()) {
199 199
                 $model = clone $this->getModelForOptions();
200 200
                 $model->{$this->getDisplay()} = $value;
201 201
                 $model->save();
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
         $items = $relation->get();
226 226
 
227 227
         foreach ($items as $item) {
228
-            if (! in_array($item->getKey(), $values)) {
228
+            if (!in_array($item->getKey(), $values)) {
229 229
                 if ($this->isDeleteRelatedItem()) {
230 230
                     $item->delete();
231 231
                 } else {
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
             $item = $model->find($value);
251 251
 
252 252
             if (is_null($item)) {
253
-                if (! $this->isTaggable()) {
253
+                if (!$this->isTaggable()) {
254 254
                     continue;
255 255
                 }
256 256
 
Please login to merge, or discard this patch.
src/Form/Element/NamedFormElement.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     {
86 86
         $name = array_shift($parts);
87 87
 
88
-        while (! empty($parts)) {
88
+        while (!empty($parts)) {
89 89
             $part = array_shift($parts);
90 90
             $name .= "[$part]";
91 91
         }
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     {
239 239
         $this->addValidationRule('_unique');
240 240
 
241
-        if (! is_null($message)) {
241
+        if (!is_null($message)) {
242 242
             $this->addValidationMessage('unique', $message);
243 243
         }
244 244
 
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
      */
347 347
     public function getValueFromRequest(\Illuminate\Http\Request $request)
348 348
     {
349
-        if ($request->hasSession() && ! is_null($value = $request->old($this->getPath()))) {
349
+        if ($request->hasSession() && !is_null($value = $request->old($this->getPath()))) {
350 350
             return $value;
351 351
         }
352 352
 
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
      */
359 359
     public function getValueFromModel()
360 360
     {
361
-        if (! is_null($value = $this->getValueFromRequest(request()))) {
361
+        if (!is_null($value = $this->getValueFromRequest(request()))) {
362 362
             return $value;
363 363
         }
364 364
 
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
         $path = $this->getPath();
367 367
         $value = $this->getDefaultValue();
368 368
 
369
-        if (is_null($model) || ! $model->exists) {
369
+        if (is_null($model) || !$model->exists) {
370 370
             return $value;
371 371
         }
372 372
 
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
         if ($count === 1) {
397 397
             $attribute = $model->getAttribute($this->getModelAttributeKey());
398 398
 
399
-            if (! empty($attribute) || $attribute === 0 || is_null($value)) {
399
+            if (!empty($attribute) || $attribute === 0 || is_null($value)) {
400 400
                 return $attribute;
401 401
             }
402 402
         }
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
             if ($count === 2) {
411 411
                 $attribute = $model->getAttribute($relation);
412 412
 
413
-                if (! empty($attribute) || is_null($value)) {
413
+                if (!empty($attribute) || is_null($value)) {
414 414
                     return $attribute;
415 415
                 }
416 416
             }
Please login to merge, or discard this patch.