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 ( 1029b6...5d87db )
by Roderik
02:30
created
src/be/kunstmaan/multichain/MultichainClient.php 1 patch
Spacing   +3 added lines, -3 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
 
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
      * @param bool $open
411 411
      * @return mixed
412 412
      */
413
-    public function issue($address, $name, $qty, $units = 1, $nativeAmount = 0, $custom = null, $open=false)
413
+    public function issue($address, $name, $qty, $units = 1, $nativeAmount = 0, $custom = null, $open = false)
414 414
     {
415 415
         $params = array($address, array('name'=>$name, 'open'=>$open), $qty, $units, $nativeAmount);
416 416
         if (!is_null($custom)) {
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
      * @param null $custom
434 434
      * @return mixed
435 435
      */
436
-    public function issueMore($address, $asset, $qty, $nativeAmount=0, $custom = null){
436
+    public function issueMore($address, $asset, $qty, $nativeAmount = 0, $custom = null) {
437 437
         $params = array($address, $asset, $qty, $nativeAmount);
438 438
         if (!is_null($custom)) {
439 439
             $params[] = $custom;
Please login to merge, or discard this patch.