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 ( a9bc98...b864c9 )
by butschster
10:50
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.
tests/Admin/AdminTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,8 +166,8 @@
 block discarded – undo
166 166
         $controller = m::mock($controllerClass);
167 167
         $this->app->instance($controllerClass, $controller);
168 168
         $controller->shouldReceive('renderContent')
169
-                   ->withArgs($arguments)
170
-                   ->once();
169
+                    ->withArgs($arguments)
170
+                    ->once();
171 171
 
172 172
         $this->admin->view($arguments[0], $arguments[1]);
173 173
     }
Please login to merge, or discard this patch.