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 ( 238f89...55586b )
by Aden
03:08
created
src/Flare/Admin/Models/AttributeCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      */
153 153
     private function getOptions($name)
154 154
     {
155
-        $method = 'get'.Str::studly($name).'Options';
155
+        $method = 'get' . Str::studly($name) . 'Options';
156 156
 
157 157
         return $this->modelManager->{$method}();
158 158
     }
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      */
167 167
     public function hasOptionsMethod($key)
168 168
     {
169
-        return method_exists($this->modelManager, 'get'.Str::studly($key).'Options');
169
+        return method_exists($this->modelManager, 'get' . Str::studly($key) . 'Options');
170 170
     }
171 171
 
172 172
     /**
Please login to merge, or discard this patch.