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 ( 5d87db...89969e )
by Roderik
02:11
created
src/be/kunstmaan/multichain/MultichainClient.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      * @param $address
121 121
      * @return mixed
122 122
      */
123
-    public function dumpPrivateKey($address){
123
+    public function dumpPrivateKey($address) {
124 124
         return $this->jsonRPCClient->execute("dumpprivkey", array($address));
125 125
     }
126 126
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      * @param bool $rescan
135 135
      * @return mixed
136 136
      */
137
-    public function importPrivateKey($privkey, $label="", $rescan=true){
137
+    public function importPrivateKey($privkey, $label = "", $rescan = true) {
138 138
         return $this->jsonRPCClient->execute("importprivkey", array($privkey, $label, $rescan));
139 139
     }
140 140
 
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
      * @param bool $open
425 425
      * @return mixed
426 426
      */
427
-    public function issue($address, $name, $qty, $units = 1, $nativeAmount = 0, $custom = null, $open=false)
427
+    public function issue($address, $name, $qty, $units = 1, $nativeAmount = 0, $custom = null, $open = false)
428 428
     {
429 429
         $params = array($address, array('name'=>$name, 'open'=>$open), $qty, $units, $nativeAmount);
430 430
         if (!is_null($custom)) {
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
      * @param null $custom
448 448
      * @return mixed
449 449
      */
450
-    public function issueMore($address, $asset, $qty, $nativeAmount=0, $custom = null){
450
+    public function issueMore($address, $asset, $qty, $nativeAmount = 0, $custom = null) {
451 451
         $params = array($address, $asset, $qty, $nativeAmount);
452 452
         if (!is_null($custom)) {
453 453
             $params[] = $custom;
Please login to merge, or discard this patch.