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 ( b3b3ba...55fdb7 )
by butschster
05:55 queued 01:22
created
src/Form/Element/Image.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,13 +17,13 @@  discard block
 block discarded – undo
17 17
      */
18 18
     protected static function validate(Validator $validator)
19 19
     {
20
-        $validator->after(function ($validator) {
20
+        $validator->after(function($validator) {
21 21
             /** @var \Illuminate\Http\UploadedFile $file */
22 22
             $file = array_get($validator->attributes(), 'file');
23 23
 
24 24
             $size = getimagesize($file->getRealPath());
25 25
 
26
-            if (! $size) {
26
+            if (!$size) {
27 27
                 $validator->errors()->add('file', trans('sleeping_owl::validation.not_image'));
28 28
             }
29 29
         });
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             $image = \Intervention\Image\Facades\Image::make($file);
46 46
 
47 47
             foreach ($settings as $method => $args) {
48
-                call_user_func_array([$image, $method], $args);
48
+                call_user_func_array([ $image, $method ], $args);
49 49
             }
50 50
 
51 51
             return $image->save($path.'/'.$filename);
@@ -77,5 +77,5 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * @var array
79 79
      */
80
-    protected $uploadValidationRules = ['required', 'image'];
80
+    protected $uploadValidationRules = [ 'required', 'image' ];
81 81
 }
Please login to merge, or discard this patch.
src/Form/FormButtons.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -313,11 +313,11 @@  discard block
 block discarded – undo
313 313
      */
314 314
     public function isShowDeleteButton()
315 315
     {
316
-        if (is_null($this->getModel()->getKey()) || ! $this->showDeleteButton) {
316
+        if (is_null($this->getModel()->getKey()) || !$this->showDeleteButton) {
317 317
             return false;
318 318
         }
319 319
 
320
-        $this->showDeleteButton = ! $this->isTrashed() && $this->getModelConfiguration()->isDeletable($this->getModel());
320
+        $this->showDeleteButton = !$this->isTrashed() && $this->getModelConfiguration()->isDeletable($this->getModel());
321 321
 
322 322
         return $this->showDeleteButton;
323 323
     }
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
      */
338 338
     public function isShowDestroyButton()
339 339
     {
340
-        if (is_null($this->getModel()->getKey()) || ! $this->showDestroyButton) {
340
+        if (is_null($this->getModel()->getKey()) || !$this->showDestroyButton) {
341 341
             return false;
342 342
         }
343 343
 
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
      */
363 363
     public function isShowRestoreButton()
364 364
     {
365
-        if (is_null($this->getModel()->getKey()) || ! $this->showRestoreButton) {
365
+        if (is_null($this->getModel()->getKey()) || !$this->showRestoreButton) {
366 366
             return false;
367 367
         }
368 368
 
Please login to merge, or discard this patch.
src/Form/FormDefault.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * @param array $elements
75 75
      */
76
-    public function __construct(array $elements = [])
76
+    public function __construct(array $elements = [ ])
77 77
     {
78 78
         parent::__construct($elements);
79 79
 
@@ -94,14 +94,14 @@  discard block
 block discarded – undo
94 94
         }
95 95
 
96 96
         $this->initialized = true;
97
-        $this->repository = app(RepositoryInterface::class, [$this->class]);
97
+        $this->repository = app(RepositoryInterface::class, [ $this->class ]);
98 98
 
99 99
         $this->setModel(app($this->class));
100 100
 
101 101
         parent::initialize();
102 102
 
103
-        $this->getElements()->each(function ($element) {
104
-            if ($element instanceof Upload and ! $this->hasHtmlAttribute('enctype')) {
103
+        $this->getElements()->each(function($element) {
104
+            if ($element instanceof Upload and !$this->hasHtmlAttribute('enctype')) {
105 105
                 $this->setHtmlAttribute('enctype', 'multipart/form-data');
106 106
             }
107 107
         });
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
      */
231 231
     public function setItems($items)
232 232
     {
233
-        if (! is_array($items)) {
233
+        if (!is_array($items)) {
234 234
             $items = func_get_args();
235 235
         }
236 236
 
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
      */
258 258
     public function setId($id)
259 259
     {
260
-        if (is_null($this->id) and ! is_null($id) and ($model = $this->getRepository()->find($id))) {
260
+        if (is_null($this->id) and !is_null($id) and ($model = $this->getRepository()->find($id))) {
261 261
             $this->id = $id;
262 262
             $this->setModel($model);
263 263
         }
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
         $model = $this->getModel();
324 324
 
325 325
         foreach ($model->getRelations() as $name => $relation) {
326
-            if ($model->{$name}() instanceof BelongsTo && ! is_null($relation)) {
326
+            if ($model->{$name}() instanceof BelongsTo && !is_null($relation)) {
327 327
                 $relation->save();
328 328
                 $model->{$name}()->associate($relation);
329 329
             }
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
         $model = $this->getModel();
336 336
 
337 337
         foreach ($model->getRelations() as $name => $relation) {
338
-            if ($model->{$name}() instanceof HasOneOrMany && ! is_null($relation)) {
338
+            if ($model->{$name}() instanceof HasOneOrMany && !is_null($relation)) {
339 339
                 if (is_array($relation) || $relation instanceof \Traversable) {
340 340
                     $model->{$name}()->saveMany($relation);
341 341
                 } else {
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      * @deprecated 4.5.0
214 214
      * @see getElements()
215 215
      *
216
-     * @return Collection[]
216
+     * @return Collection
217 217
      */
218 218
     public function getItems()
219 219
     {
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
      *
302 302
      * @param ModelConfigurationInterface $modelConfiguration
303 303
      *
304
-     * @return bool
304
+     * @return null|boolean
305 305
      */
306 306
     public function saveForm(ModelConfigurationInterface $modelConfiguration)
307 307
     {
Please login to merge, or discard this patch.
src/Form/Columns/Columns.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      *
22 22
      * @param array $elements
23 23
      */
24
-    public function __construct(array $elements = [])
24
+    public function __construct(array $elements = [ ])
25 25
     {
26 26
         $this->elements = new Collection();
27 27
         parent::__construct($elements);
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             $element = new Column($element);
68 68
         }
69 69
 
70
-        if (! ($element instanceof ColumnInterface)) {
70
+        if (!($element instanceof ColumnInterface)) {
71 71
             throw new \Exception('Column should be instance of ColumnInterface');
72 72
         }
73 73
 
@@ -82,16 +82,16 @@  discard block
 block discarded – undo
82 82
     {
83 83
         $this->setHtmlAttribute('class', 'row');
84 84
 
85
-        $count = $this->getElements()->filter(function (ColumnInterface $column) {
85
+        $count = $this->getElements()->filter(function(ColumnInterface $column) {
86 86
             return $column->getWidth() === 0;
87 87
         })->count();
88 88
 
89
-        $width = $this->maxWidth - $this->getElements()->sum(function (ColumnInterface $column) {
89
+        $width = $this->maxWidth - $this->getElements()->sum(function(ColumnInterface $column) {
90 90
             return $column->getWidth();
91 91
         });
92 92
 
93
-        $this->getElements()->each(function (ColumnInterface $column) use ($width, $count) {
94
-            if (! $column->getWidth()) {
93
+        $this->getElements()->each(function(ColumnInterface $column) use ($width, $count) {
94
+            if (!$column->getWidth()) {
95 95
                 $column->setWidth(floor($width / $count));
96 96
             }
97 97
         });
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      */
132 132
     public function setSize($size)
133 133
     {
134
-        $this->getColumns()->each(function (ColumnInterface $column) use ($size) {
134
+        $this->getColumns()->each(function(ColumnInterface $column) use ($size) {
135 135
             $column->setSize($size);
136 136
         });
137 137
     }
Please login to merge, or discard this patch.
src/Form/FormElements.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      *
15 15
      * @param array $elements
16 16
      */
17
-    public function __construct(array $elements = [])
17
+    public function __construct(array $elements = [ ])
18 18
     {
19 19
         parent::__construct();
20 20
 
Please login to merge, or discard this patch.
resources/lang/tr/validation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,6 +87,6 @@
 block discarded – undo
87 87
     |
88 88
     */
89 89
 
90
-    'attributes' => [],
90
+    'attributes' => [ ],
91 91
 
92 92
 ];
Please login to merge, or discard this patch.
resources/assets.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! function_exists('resources_url')) {
3
+if (!function_exists('resources_url')) {
4 4
     function resources_url($path)
5 5
     {
6 6
         return '/packages/sleepingowl/default/'.$path;
@@ -14,11 +14,11 @@  discard block
 block discarded – undo
14 14
 */
15 15
 
16 16
 WysiwygManager::register('ckeditor')
17
-    ->js(null, '//cdn.ckeditor.com/4.5.7/standard/ckeditor.js', ['jquery']);
17
+    ->js(null, '//cdn.ckeditor.com/4.5.7/standard/ckeditor.js', [ 'jquery' ]);
18 18
 
19 19
 WysiwygManager::register('tinymce')
20
-    ->js(null, '//cdn.tinymce.com/4/tinymce.min.js', ['jquery']);
20
+    ->js(null, '//cdn.tinymce.com/4/tinymce.min.js', [ 'jquery' ]);
21 21
 
22 22
 WysiwygManager::register('simplemde', new \SleepingOwl\Admin\Wysiwyg\MarkdownFilter())
23
-    ->js(null, '//cdn.jsdelivr.net/simplemde/latest/simplemde.min.js', ['jquery'])
23
+    ->js(null, '//cdn.jsdelivr.net/simplemde/latest/simplemde.min.js', [ 'jquery' ])
24 24
     ->css(null, '//cdn.jsdelivr.net/simplemde/latest/simplemde.min.css');
Please login to merge, or discard this patch.
config/sleeping_owl.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     |
46 46
     */
47 47
 
48
-    'middleware' => ['web'],
48
+    'middleware' => [ 'web' ],
49 49
 
50 50
     /*
51 51
     |--------------------------------------------------------------------------
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
          * See https://github.com/NextStepWebs/simplemde-markdown-editor
134 134
          */
135 135
         'simplemde' => [
136
-            'hideIcons' => ['side-by-side', 'fullscreen'],
136
+            'hideIcons' => [ 'side-by-side', 'fullscreen' ],
137 137
         ],
138 138
     ],
139 139
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     | Select default settings for datatable
146 146
     |
147 147
     */
148
-    'datatables' => [],
148
+    'datatables' => [ ],
149 149
 
150 150
     /*
151 151
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
src/Templates/TemplateDefault.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 {
10 10
     public function __construct()
11 11
     {
12
-        Meta::addJs('admin-default', resources_url('js/admin-app.js'), ['admin-scripts'])
12
+        Meta::addJs('admin-default', resources_url('js/admin-app.js'), [ 'admin-scripts' ])
13 13
             ->addJs('admin-scripts', route('admin.scripts'))
14 14
             ->addCss('admin-default', resources_url('css/admin-app.css'));
15 15
     }
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      *
55 55
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
56 56
      */
57
-    public function view($view, $data = [], $mergeData = [])
57
+    public function view($view, $data = [ ], $mergeData = [ ])
58 58
     {
59 59
         if ($view instanceof \Illuminate\View\View) {
60 60
             return $view->with($data);
Please login to merge, or discard this patch.