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 ( 804494...1f9cfe )
by Roderik
02:09
created
src/be/kunstmaan/multichain/MultichainClient.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public function setDebug($debug)
58 58
     {
59 59
         $this->debug = $debug;
60
-        if($debug){
60
+        if ($debug) {
61 61
             $this->jsonRPCClient->getHttpClient()->withDebug();
62 62
         }
63 63
         return $this;
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      * @param $address
123 123
      * @return mixed
124 124
      */
125
-    public function dumpPrivateKey($address){
125
+    public function dumpPrivateKey($address) {
126 126
         return $this->jsonRPCClient->execute("dumpprivkey", array($address));
127 127
     }
128 128
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      * @param bool $rescan
137 137
      * @return mixed
138 138
      */
139
-    public function importPrivateKey($privkey, $label="", $rescan=true){
139
+    public function importPrivateKey($privkey, $label = "", $rescan = true) {
140 140
         return $this->jsonRPCClient->execute("importprivkey", array($privkey, $label, $rescan));
141 141
     }
142 142
 
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
      * @param bool $open
427 427
      * @return mixed
428 428
      */
429
-    public function issue($address, $name, $qty, $units = 1, $nativeAmount = 0, $custom = null, $open=false)
429
+    public function issue($address, $name, $qty, $units = 1, $nativeAmount = 0, $custom = null, $open = false)
430 430
     {
431 431
         $params = array($address, array('name'=>$name, 'open'=>$open), $qty, $units, $nativeAmount);
432 432
         if (!is_null($custom)) {
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
      * @param null $custom
450 450
      * @return mixed
451 451
      */
452
-    public function issueMore($address, $asset, $qty, $nativeAmount=0, $custom = null){
452
+    public function issueMore($address, $asset, $qty, $nativeAmount = 0, $custom = null) {
453 453
         $params = array($address, $asset, $qty, $nativeAmount);
454 454
         if (!is_null($custom)) {
455 455
             $params[] = $custom;
Please login to merge, or discard this patch.