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 ( 416e54...1f9fcc )
by sebastian
01:30
created
src/Facade/Responses/CalendarSyncInfoResponse.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,9 @@  discard block
 block discarded – undo
39 39
     public function getUpdates(){
40 40
         $res = [];
41 41
         foreach ($this->responses as $entity){
42
-            if($entity instanceof ETagEntityResponse && $entity->getStatus() != HttpResponse::HttpOKStatus) continue;
42
+            if($entity instanceof ETagEntityResponse && $entity->getStatus() != HttpResponse::HttpOKStatus) {
43
+                continue;
44
+            }
43 45
                 $res[] = $entity;
44 46
         }
45 47
         return $res;
@@ -51,7 +53,9 @@  discard block
 block discarded – undo
51 53
     public function getDeletes(){
52 54
         $res = [];
53 55
         foreach ($this->responses as $entity){
54
-            if($entity instanceof ETagEntityResponse && $entity->getStatus() != HttpResponse::HttpNotFoundStatus) continue;
56
+            if($entity instanceof ETagEntityResponse && $entity->getStatus() != HttpResponse::HttpNotFoundStatus) {
57
+                continue;
58
+            }
55 59
                 $res[] = $entity;
56 60
         }
57 61
         return $res;
Please login to merge, or discard this patch.