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 ( 881f2b...f1e702 )
by Rich
06:28
created
src/Wallet.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -81,12 +81,12 @@  discard block
 block discarded – undo
81 81
     public function __toString()
82 82
     {
83 83
         return json_encode(array(
84
-                                 'WIF_address'       => $this->WIF_address,
85
-                                 'private_key'       => $this->private_key,
86
-                                 'network_type'      => $this->network_type,
87
-                                 'compressed_pubkey' => $this->compressed_pubkey_format,
88
-                                 'checksum'          => $this->checksum)
89
-                                 );
84
+                                    'WIF_address'       => $this->WIF_address,
85
+                                    'private_key'       => $this->private_key,
86
+                                    'network_type'      => $this->network_type,
87
+                                    'compressed_pubkey' => $this->compressed_pubkey_format,
88
+                                    'checksum'          => $this->checksum)
89
+                                    );
90 90
     }
91 91
 
92 92
     /**
@@ -382,9 +382,9 @@  discard block
 block discarded – undo
382 382
         $decoded_key = $this->stripHexPrefix($this->decodeBase58(trim($WIF_encoded_key)));
383 383
 
384 384
         list($private_key, $checksum_provided) = array(
385
-                                                       substr($decoded_key, 0, -8), 
386
-                                                       substr($decoded_key, strlen($decoded_key) - 8)
387
-                                                       );
385
+                                                        substr($decoded_key, 0, -8), 
386
+                                                        substr($decoded_key, strlen($decoded_key) - 8)
387
+                                                        );
388 388
 
389 389
         $private_key_type = substr($private_key, 0, 2);
390 390
 
Please login to merge, or discard this patch.