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 ( 133f50...e92aed )
by sebastian
01:35
created
src/Facade/Responses/AbstractCalDAVResponse.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,9 @@
 block discarded – undo
50 50
             $this->stripped = $this->stripNamespacesFromTags($this->body);
51 51
             // Merge CDATA as text nodes
52 52
             $this->xml = simplexml_load_string($this->stripped, null, LIBXML_NOCDATA);
53
-            if($this->xml === FALSE)
54
-                throw new XMLResponseParseException();
53
+            if($this->xml === FALSE) {
54
+                            throw new XMLResponseParseException();
55
+            }
55 56
             $this->content = $this->toAssocArray($this->xml);
56 57
 
57 58
             $this->parse();
Please login to merge, or discard this patch.
src/Facade/Responses/VCardEntityResponse.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,9 +22,13 @@
 block discarded – undo
22 22
      * @return string
23 23
      */
24 24
     public function getVCard(){
25
-        if(!isset($this->found_props['calendar-data'])) return null;
25
+        if(!isset($this->found_props['calendar-data'])) {
26
+            return null;
27
+        }
26 28
         $calendar_data = $this->found_props['calendar-data'];
27
-        if(!is_string($calendar_data)) return null;
29
+        if(!is_string($calendar_data)) {
30
+            return null;
31
+        }
28 32
         return $calendar_data;
29 33
     }
30 34
 }
31 35
\ No newline at end of file
Please login to merge, or discard this patch.