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.
Passed
Push — master ( f234d5...5895f1 )
by sebastian
02:35
created
src/Facade/Responses/UserPrincipalSingleResponse.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,9 +25,10 @@
 block discarded – undo
25 25
         $url = isset($this->found_props['current-user-principal']) &&  isset($this->found_props['current-user-principal']['href']) ?
26 26
             $this->server_url.$this->found_props['current-user-principal']['href'] : null;
27 27
         // check on not found one ( issue on caldav icloud imp)
28
-        if(empty($url))
29
-            $url =  isset($this->not_found_props['current-user-principal']) &&  isset($this->not_found_props['current-user-principal']['href']) ?
28
+        if(empty($url)) {
29
+                    $url =  isset($this->not_found_props['current-user-principal']) &&  isset($this->not_found_props['current-user-principal']['href']) ?
30 30
                 $this->server_url.$this->not_found_props['current-user-principal']['href'] : null;
31
+        }
31 32
         return $url;
32 33
     }
33 34
 }
34 35
\ No newline at end of file
Please login to merge, or discard this patch.