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.
Completed
Push — master ( f8bd00...7a27b9 )
by Damián
02:53
created
src/GoPaySDK.php 1 patch
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,8 +60,9 @@  discard block
 block discarded – undo
60 60
     protected function initGoPay()
61 61
     {
62 62
         $this->gopay = GoPay\Api::payments($this->config, $this->services);
63
-        if($this->needReInit)
64
-            $this->needReInit = false;
63
+        if($this->needReInit) {
64
+                    $this->needReInit = false;
65
+        }
65 66
         return $this->gopay;
66 67
     }
67 68
 
@@ -122,7 +123,7 @@  discard block
 block discarded – undo
122 123
         if($this->logClosure == null) {
123 124
 
124 125
             $this->logsBefore[] = [$request, $response];
125
-        }else{
126
+        } else{
126 127
             call_user_func($this->logClosure, $request, $response);
127 128
         }
128 129
     }
Please login to merge, or discard this patch.