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
Pull Request — master (#39)
by Alex
03:56
created
src/Flare/Admin/Admin.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
             return $this->view;
213 213
         }
214 214
 
215
-        return 'flare::'.$this->view;
215
+        return 'flare::' . $this->view;
216 216
     }
217 217
 
218 218
     /**
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     public function getTitle()
294 294
     {
295 295
         if (!isset($this->title) || !$this->title) {
296
-            return Str::title(str_replace('_', ' ', snake_case(preg_replace('/'.static::CLASS_SUFFIX.'$/', '', static::shortName()))));
296
+            return Str::title(str_replace('_', ' ', snake_case(preg_replace('/' . static::CLASS_SUFFIX . '$/', '', static::shortName()))));
297 297
         }
298 298
 
299 299
         return $this->title;
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
      */
369 369
     public function relativeUrl($path = '')
370 370
     {
371
-        return \Flare::relativeAdminUrl($this->urlPrefix().($path ? '/'.$path : ''));
371
+        return \Flare::relativeAdminUrl($this->urlPrefix() . ($path ? '/' . $path : ''));
372 372
     }
373 373
 
374 374
     /**
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
      */
393 393
     public function relativeCurrentUrl($path)
394 394
     {
395
-        return \Route::current() ? \Route::current()->getPrefix().'/'.$path : null;
395
+        return \Route::current() ? \Route::current()->getPrefix() . '/' . $path : null;
396 396
     }
397 397
 
398 398
     /*
Please login to merge, or discard this patch.