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.
Test Setup Failed
Push — master ( fd45eb...f91a4c )
by Dave
35:25 queued 16:23
created
src/Traits/OrderableModel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,16 +17,16 @@
 block discarded – undo
17 17
      */
18 18
     protected static function bootOrderableModel()
19 19
     {
20
-        static::creating(function (Model $row) {
20
+        static::creating(function(Model $row) {
21 21
             $row->updateOrderFieldOnCreate();
22 22
         });
23 23
 
24
-        static::deleted(function (Model $row) {
24
+        static::deleted(function(Model $row) {
25 25
             $row->updateOrderFieldOnDelete();
26 26
         });
27 27
 
28 28
         if (in_array("Illuminate\Database\Eloquent\SoftDeletes", trait_uses_recursive(new static()))) {
29
-            static::restoring(function (Model $row) {
29
+            static::restoring(function(Model $row) {
30 30
                 $row->updateOrderFieldOnRestore();
31 31
             });
32 32
         }
Please login to merge, or discard this patch.
resources/views/default/display/extensions/columns.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
                 if ($column instanceof \SleepingOwl\Admin\Display\Column\Control) {
26 26
                     $column->initialize();
27 27
                 }
28
-                if($column instanceof \SleepingOwl\Admin\Contracts\Display\ColumnEditableInterface) {
28
+                if ($column instanceof \SleepingOwl\Admin\Contracts\Display\ColumnEditableInterface) {
29 29
                 ?>
30 30
 
31 31
                 <td>
Please login to merge, or discard this patch.