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 — develop ( 5050db...052270 )
by A s m
04:01
created
src/Traits/User.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         public function withdraw($address,$amount)
39 39
     {
40 40
 
41
-           $url = '/user/'.$this->coin.'/withdraw';
41
+            $url = '/user/'.$this->coin.'/withdraw';
42 42
         $response = $this->client->doPost($url, ['address'=>$address,'amount'=>$amount]);
43 43
 
44 44
         return $response;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,11 +35,11 @@
 block discarded – undo
35 35
 
36 36
         return $response;
37 37
     }
38
-        public function withdraw($address,$amount)
38
+        public function withdraw($address, $amount)
39 39
     {
40 40
 
41 41
            $url = '/user/'.$this->coin.'/withdraw';
42
-        $response = $this->client->doPost($url, ['address'=>$address,'amount'=>$amount]);
42
+        $response = $this->client->doPost($url, ['address'=>$address, 'amount'=>$amount]);
43 43
 
44 44
         return $response;
45 45
     }
Please login to merge, or discard this patch.