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 ( d20332...b9a354 )
by Aden
04:10
created
src/Flare/Admin/Attributes/AttributeCollection.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@  discard block
 block discarded – undo
32 32
      * Create a new collection.
33 33
      *
34 34
      * @param  mixed  $items
35
+     * @param \LaravelFlare\Flare\Admin\Models\ModelAdmin $modelManager
35 36
      * 
36 37
      * @return void
37 38
      */
@@ -48,7 +49,7 @@  discard block
 block discarded – undo
48 49
      * Attempt to reformat the current attribute items array
49 50
      * into the most usable format (an Attribute Collection).
50 51
      * 
51
-     * @return void
52
+     * @return AttributeCollection
52 53
      */
53 54
     public function formatFields()
54 55
     {
Please login to merge, or discard this patch.
src/Flare/Admin/Attributes/AttributeManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             throw new \Exception('Attribute Field Type cannot be empty or undefined.');
41 41
         }
42 42
 
43
-        return call_user_func_array([$this->createAttribute($field['type'], $action, $attribute, $field, $modelManager), camel_case('render_'.$action)], []);
43
+        return call_user_func_array([$this->createAttribute($field['type'], $action, $attribute, $field, $modelManager), camel_case('render_' . $action)], []);
44 44
     }
45 45
 
46 46
     /**
Please login to merge, or discard this patch.