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 ( 7b1be3...95aa33 )
by Aden
03:57
created
src/Flare/Flare.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     public function config($key)
54 54
     {
55 55
         if (array_key_exists($key, $this->configurationKeys)) {
56
-            return config('flare.'.$key, $this->configurationKeys[$key]);
56
+            return config('flare.' . $key, $this->configurationKeys[$key]);
57 57
         }
58 58
 
59 59
         return config($key);
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function relativeAdminUrl($path = '')
105 105
     {
106
-        return rtrim(\Flare::config('admin_url').'/'.$path, '/');
106
+        return rtrim(\Flare::config('admin_url') . '/' . $path, '/');
107 107
     }
108 108
 
109 109
     /**
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     public function docsUrl($path = '')
118 118
     {
119
-        return url('#'.$path);
119
+        return url('#' . $path);
120 120
     }
121 121
 
122 122
     /**
@@ -171,10 +171,10 @@  discard block
 block discarded – undo
171 171
         if ($this->attributeTypeExists($field['type'])) {
172 172
             $fieldType = $this->resolveAttributeClass($field['type']);
173 173
 
174
-            return call_user_func_array([new $fieldType($attribute, $field, $model, $modelManager), camel_case('render_'.$action)], []);
174
+            return call_user_func_array([new $fieldType($attribute, $field, $model, $modelManager), camel_case('render_' . $action)], []);
175 175
         }
176 176
 
177
-        return call_user_func_array([new BaseAttribute($attribute, $field, $model, $modelManager), camel_case('render_'.$action)], []);
177
+        return call_user_func_array([new BaseAttribute($attribute, $field, $model, $modelManager), camel_case('render_' . $action)], []);
178 178
     }
179 179
 
180 180
     /**
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      */
187 187
     protected function resolveAttributeClass($type)
188 188
     {
189
-        $fullClassname = array_key_exists(title_case($type).'Attribute', $this->availableAttributes()) ? $this->availableAttributes()[title_case($type).'Attribute'] : false;
189
+        $fullClassname = array_key_exists(title_case($type) . 'Attribute', $this->availableAttributes()) ? $this->availableAttributes()[title_case($type) . 'Attribute'] : false;
190 190
 
191 191
         if (!$fullClassname || !class_exists($fullClassname)) {
192 192
             return false;
Please login to merge, or discard this patch.