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
Pull Request — master (#688)
by
unknown
18:52
created
src/Traits/OrderableModel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@
 block discarded – undo
12 12
      */
13 13
     protected static function bootOrderableModel()
14 14
     {
15
-        static::creating(function (Model $row) {
15
+        static::creating(function(Model $row) {
16 16
             $row->updateOrderFieldOnCreate();
17 17
         });
18 18
 
19
-        static::deleted(function (Model $row) {
19
+        static::deleted(function(Model $row) {
20 20
             $row->updateOrderFieldOnDelete();
21 21
         });
22 22
     }
Please login to merge, or discard this patch.
src/Traits/FormElements.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function initializeElements()
25 25
     {
26
-        $this->getElements()->each(function ($element) {
26
+        $this->getElements()->each(function($element) {
27 27
             if ($element instanceof Initializable) {
28 28
                 $element->initialize();
29 29
             }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
         foreach ($this->getElements() as $element) {
43 43
             if ($element instanceof ElementsInterface) {
44
-                if (! is_null($found = $element->getElement($path))) {
44
+                if (!is_null($found = $element->getElement($path))) {
45 45
                     return $found;
46 46
                 }
47 47
             }
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      */
146 146
     protected function setModelForElements(Model $model)
147 147
     {
148
-        $this->getElements()->each(function ($element) use ($model) {
148
+        $this->getElements()->each(function($element) use ($model) {
149 149
             $element = $this->getElementContainer($element);
150 150
 
151 151
             if ($element instanceof WithModelInterface) {
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      */
164 164
     protected function getValidationRulesFromElements(array $rules = [])
165 165
     {
166
-        $this->getElements()->onlyActive()->each(function ($element) use (&$rules) {
166
+        $this->getElements()->onlyActive()->each(function($element) use (&$rules) {
167 167
             $element = $this->getElementContainer($element);
168 168
 
169 169
             if ($element instanceof Validable) {
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
      */
182 182
     protected function getValidationMessagesForElements(array $messages = [])
183 183
     {
184
-        $this->getElements()->onlyActive()->each(function ($element) use (&$messages) {
184
+        $this->getElements()->onlyActive()->each(function($element) use (&$messages) {
185 185
             $element = $this->getElementContainer($element);
186 186
 
187 187
             if ($element instanceof Validable) {
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
      */
200 200
     protected function getValidationLabelsForElements(array $labels = [])
201 201
     {
202
-        $this->getElements()->onlyActive()->each(function ($element) use (&$labels) {
202
+        $this->getElements()->onlyActive()->each(function($element) use (&$labels) {
203 203
             $element = $this->getElementContainer($element);
204 204
 
205 205
             if ($element instanceof Validable) {
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      */
218 218
     protected function saveElements(\Illuminate\Http\Request $request)
219 219
     {
220
-        $this->getElements()->onlyActive()->each(function ($element) use ($request) {
220
+        $this->getElements()->onlyActive()->each(function($element) use ($request) {
221 221
             $element = $this->getElementContainer($element);
222 222
 
223 223
             if ($element instanceof FormElementInterface) {
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      */
234 234
     protected function afterSaveElements(\Illuminate\Http\Request $request)
235 235
     {
236
-        $this->getElements()->onlyActive()->each(function ($element) use ($request) {
236
+        $this->getElements()->onlyActive()->each(function($element) use ($request) {
237 237
             $element = $this->getElementContainer($element);
238 238
 
239 239
             if ($element instanceof FormElementInterface) {
Please login to merge, or discard this patch.
src/Http/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 use Illuminate\Routing\Router;
4 4
 
5
-$router->group(['as' => 'admin.', 'namespace' => 'SleepingOwl\Admin\Http\Controllers'], function (Router $router) {
6
-    if (! $router->has('admin.dashboard')) {
5
+$router->group(['as' => 'admin.', 'namespace' => 'SleepingOwl\Admin\Http\Controllers'], function(Router $router) {
6
+    if (!$router->has('admin.dashboard')) {
7 7
         $router->get('', ['as' => 'dashboard', 'uses' => 'AdminController@getDashboard']);
8 8
     }
9 9
 
Please login to merge, or discard this patch.
src/Http/Controllers/DisplayController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
         $display = $model->fireDisplay();
87 87
 
88 88
         if ($display instanceof DisplayTabbed) {
89
-            $display->getTabs()->each(function (DisplayTab $tab) use ($request) {
89
+            $display->getTabs()->each(function(DisplayTab $tab) use ($request) {
90 90
                 $content = $tab->getContent();
91 91
                 if ($content instanceof DisplayTree) {
92 92
                     $content->getRepository()->reorder(
Please login to merge, or discard this patch.
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/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/Image.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,13 +37,13 @@
 block discarded – undo
37 37
      */
38 38
     public function customValidation(Validator $validator)
39 39
     {
40
-        $validator->after(function (Validator $validator) {
40
+        $validator->after(function(Validator $validator) {
41 41
             /** @var \Illuminate\Http\UploadedFile $file */
42 42
             $file = array_get($validator->attributes(), 'file');
43 43
 
44 44
             $size = getimagesize($file->getRealPath());
45 45
 
46
-            if (! $size) {
46
+            if (!$size) {
47 47
                 $validator->errors()->add('file', trans('sleeping_owl::validation.not_image'));
48 48
             }
49 49
         });
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.