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.
Test Setup Failed
Push — master ( 497e68...52a57e )
by Gabriel
11:15
created
Category
src/Utility/PathsHelpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public static function views($path)
17 17
     {
18
-        return static::basePath().'/resources/views'.$path;
18
+        return static::basePath() . '/resources/views' . $path;
19 19
     }
20 20
 
21 21
     public static function basePath(): string
Please login to merge, or discard this patch.
src/FormBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
     public static function loadAssetContent($path)
18 18
     {
19 19
         $fullPath = self::basePath()
20
-            .DIRECTORY_SEPARATOR.'resources'
21
-            .DIRECTORY_SEPARATOR.'assets'
20
+            .DIRECTORY_SEPARATOR . 'resources'
21
+            .DIRECTORY_SEPARATOR . 'assets'
22 22
             .$path;
23 23
         if (file_exists($fullPath)) {
24 24
             return file_get_contents($fullPath);
Please login to merge, or discard this patch.