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 master (204c5a)
by Marceau
08:01
created
src/Fields/Field.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Akibatech\Crud\Fields;
4 4
 
5
-use Akibatech\Crud\Services\CrudEntry;
6 5
 use Akibatech\Crud\Services\CrudFields;
7
-use Illuminate\Database\Eloquent\Model;
8 6
 
9 7
 /**
10 8
  * Class Field
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,8 +62,7 @@
 block discarded – undo
62 62
             {
63 63
                 $this->addRule($rule);
64 64
             }
65
-        }
66
-        else
65
+        } else
67 66
         {
68 67
             if (is_string($rules))
69 68
             {
Please login to merge, or discard this patch.
src/Services/CrudEntry.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Akibatech\Crud\Fields\Field;
8 8
 use Akibatech\Crud\Traits\Crudable;
9 9
 use Illuminate\Database\Eloquent\Model;
10
-use Illuminate\Http\Request;
11 10
 
12 11
 /**
13 12
  * Class CrudEntry
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,8 +60,7 @@  discard block
 block discarded – undo
60 60
                 $this->fields->hydrateErrorsFromSession();
61 61
                 $this->fields->hydrateFieldsFromSession();
62 62
             }
63
-        }
64
-        else
63
+        } else
65 64
         {
66 65
             throw new InvalidModelException("The model must use Crudable trait.");
67 66
         }
@@ -147,8 +146,7 @@  discard block
 block discarded – undo
147 146
                 'csrf_field'   => csrf_field(),
148 147
                 'method_field' => method_field($method),
149 148
             ];
150
-        }
151
-        else
149
+        } else
152 150
         {
153 151
             $view_name = 'crud::form-update';
154 152
             $method = $this->manager->getActionMethod('update');
Please login to merge, or discard this patch.
src/Services/CrudFields.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Akibatech\Crud\Exceptions\DuplicateFieldIdentifierException;
6 6
 use Akibatech\Crud\Exceptions\NoFieldsException;
7 7
 use Akibatech\Crud\Fields\Field;
8
-use Illuminate\Http\Request;
9 8
 use Illuminate\Support\MessageBag;
10 9
 
11 10
 /**
Please login to merge, or discard this patch.