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 ( 7a5a14...99385f )
by Aden
03:40
created
src/Flare/Traits/ModelAdmin/ModelSaving.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -170,8 +170,8 @@
 block discarded – undo
170 170
     {
171 171
         // Could swap this out for model -> getAttribute, then check if we have an attribute or a relation... getRelationValue() is helpful
172 172
         if (method_exists($this->model, $key) && is_a(call_user_func_array([$this->model, $key], []), 'Illuminate\Database\Eloquent\Relations\Relation')) {
173
-            foreach ($this->{$action.'Relations'} as $relationship => $method) {
174
-                if (is_a(call_user_func_array([$this->model, $key], []), 'Illuminate\Database\Eloquent\Relations\\'.$relationship)) {
173
+            foreach ($this->{$action . 'Relations'} as $relationship => $method) {
174
+                if (is_a(call_user_func_array([$this->model, $key], []), 'Illuminate\Database\Eloquent\Relations\\' . $relationship)) {
175 175
                     $this->model->$key()->$method($value);
176 176
 
177 177
                     return;
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use LaravelFlare\Flare\Events\AfterRestore;
10 10
 use LaravelFlare\Flare\Events\BeforeRestore;
11 11
 use LaravelFlare\Flare\Events\ModelSoftDelete;
12
-use LaravelFlare\Flare\Exceptions\ModelAdminWriteableException as WriteableException;
13 12
 
14 13
 trait ModelSoftDeleting
15 14
 {
Please login to merge, or discard this patch.
src/Flare/Admin/Models/AttributeCollection.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@
 block discarded – undo
33 33
      * Create a new collection.
34 34
      *
35 35
      * @param mixed $items
36
+     * @param ModelAdmin $modelManager
36 37
      */
37 38
     public function __construct($items = [], $modelManager = null)
38 39
     {
Please login to merge, or discard this patch.
src/Flare/Traits/ModelAdmin/ModelSoftDeleting.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use LaravelFlare\Flare\Events\AfterRestore;
10 10
 use LaravelFlare\Flare\Events\BeforeRestore;
11 11
 use LaravelFlare\Flare\Events\ModelSoftDelete;
12
-use LaravelFlare\Flare\Exceptions\ModelAdminWriteableException as WriteableException;
13 12
 
14 13
 trait ModelSoftDeleting
15 14
 {
Please login to merge, or discard this patch.
src/Flare/Traits/ModelAdmin/ModelDeleting.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use LaravelFlare\Flare\Events\AfterRestore;
10 10
 use LaravelFlare\Flare\Events\BeforeRestore;
11 11
 use LaravelFlare\Flare\Events\ModelSoftDelete;
12
-use LaravelFlare\Flare\Exceptions\ModelAdminWriteableException as WriteableException;
13 12
 
14 13
 trait ModelSoftDeleting
15 14
 {
Please login to merge, or discard this patch.
src/Flare/Traits/ModelAdmin/ModelQuerying.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -138,6 +138,7 @@
 block discarded – undo
138 138
     /**
139 139
      * Performs the Model Query
140 140
      * 
141
+     * @param boolean $count
141 142
      * @return \Illuminate\Database\Eloquent\Collection
142 143
      */
143 144
     private function query($count)
Please login to merge, or discard this patch.