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 ( 5895f1...7feaaa )
by sebastian
01:35
created
src/Facade/Responses/ETagEntityResponse.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @return string
23 23
      */
24
-    public function getETag(){
24
+    public function getETag() {
25 25
         return isset($this->found_props['getetag']) ? $this->found_props['getetag'] : null;
26 26
     }
27 27
 
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function getStatus()
32 32
     {
33
-        if(isset($this->content['response']['status']))             return $this->content['response']['status'];
34
-        if(isset($this->content['response']['propstat']['status'])) return $this->content['response']['propstat']['status'];
33
+        if (isset($this->content['response']['status']))             return $this->content['response']['status'];
34
+        if (isset($this->content['response']['propstat']['status'])) return $this->content['response']['propstat']['status'];
35 35
 
36 36
         return null;
37 37
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,12 @@
 block discarded – undo
30 30
      */
31 31
     public function getStatus()
32 32
     {
33
-        if(isset($this->content['response']['status']))             return $this->content['response']['status'];
34
-        if(isset($this->content['response']['propstat']['status'])) return $this->content['response']['propstat']['status'];
33
+        if(isset($this->content['response']['status'])) {
34
+            return $this->content['response']['status'];
35
+        }
36
+        if(isset($this->content['response']['propstat']['status'])) {
37
+            return $this->content['response']['propstat']['status'];
38
+        }
35 39
 
36 40
         return null;
37 41
     }
Please login to merge, or discard this patch.