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 development (1144d9)
by butschster
09:48
created
resources/views/default/form/tabbed.blade.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
8 8
 			<?php $active = null; ?>
9 9
 			@foreach ($items as $label => $_tmp)
10 10
 				<?php
11
-					if (is_null($active)) {
12
-						$active = $label;
13
-					}
14
-				?>
11
+                    if (is_null($active)) {
12
+                        $active = $label;
13
+                    }
14
+                ?>
15 15
 				<li role="presentation" {!! ($active == $label) ? 'class="active"' : '' !!}><a href="#{{ md5($label) }}" aria-controls="{{ md5($label) }}" role="tab" data-toggle="tab">{{ $label }}</a></li>
16 16
 			@endforeach
17 17
 		</ul>
Please login to merge, or discard this patch.
src/Display/DisplayTable.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 /**
15 15
  * Class DisplayTable.
16
-
17 16
  * @method Columns getColumns()
18 17
  * @method $this setColumns(ColumnInterface $column, ... $columns)
19 18
  *
Please login to merge, or discard this patch.
src/Display/DisplayTree.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -89,9 +89,9 @@
 block discarded – undo
89 89
         parent::initialize();
90 90
 
91 91
         $this->getRepository()
92
-             ->setParentField($this->getParentField())
93
-             ->setOrderField($this->getOrderField())
94
-             ->setRootParentId($this->getRootParentId());
92
+                ->setParentField($this->getParentField())
93
+                ->setOrderField($this->getOrderField())
94
+                ->setRootParentId($this->getRootParentId());
95 95
     }
96 96
 
97 97
     /**
Please login to merge, or discard this patch.
src/Traits/OrderableModel.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,8 +73,8 @@
 block discarded – undo
73 73
     protected function updateOrderFieldOnDelete()
74 74
     {
75 75
         static::orderModel()
76
-              ->where($this->getOrderField(), '>', $this->getOrderValue())
77
-              ->decrement($this->getOrderField());
76
+                ->where($this->getOrderField(), '>', $this->getOrderValue())
77
+                ->decrement($this->getOrderField());
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.
src/Display/DisplayDatatablesAsync.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,16 +4,13 @@
 block discarded – undo
4 4
 
5 5
 use Request;
6 6
 use Illuminate\Routing\Router;
7
-use Illuminate\Http\JsonResponse;
8 7
 use Illuminate\Support\Collection;
9 8
 use Illuminate\Database\Eloquent\Builder;
10 9
 use SleepingOwl\Admin\Display\Column\Link;
11 10
 use SleepingOwl\Admin\Display\Column\Text;
12 11
 use SleepingOwl\Admin\Display\Column\Email;
13 12
 use SleepingOwl\Admin\Display\Column\Control;
14
-use Illuminate\Contracts\Foundation\Application;
15 13
 use SleepingOwl\Admin\Contracts\WithRoutesInterface;
16
-use SleepingOwl\Admin\Contracts\ModelConfigurationInterface;
17 14
 
18 15
 class DisplayDatatablesAsync extends DisplayDatatables implements WithRoutesInterface
19 16
 {
Please login to merge, or discard this patch.
src/Form/Element/File.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,13 +4,10 @@
 block discarded – undo
4 4
 
5 5
 use Closure;
6 6
 use Validator;
7
-use Illuminate\Http\Request;
8 7
 use Illuminate\Routing\Router;
9
-use Illuminate\Http\JsonResponse;
10 8
 use Illuminate\Http\UploadedFile;
11 9
 use KodiComponents\Support\Upload;
12 10
 use SleepingOwl\Admin\Contracts\WithRoutesInterface;
13
-use SleepingOwl\Admin\Contracts\ModelConfigurationInterface;
14 11
 
15 12
 class File extends NamedFormElement implements WithRoutesInterface
16 13
 {
Please login to merge, or discard this patch.