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 ( b65a43...b8b6ed )
by Roderik
02:03
created
src/be/kunstmaan/multichain/MultichainClient.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,6 @@
 block discarded – undo
43 43
      * @param  string $username Multichain JSON RPC username
44 44
      * @param  string $password Multichain JSON RPC password
45 45
      * @param  integer $timeout HTTP timeout
46
-     * @param bool $debug
47 46
      */
48 47
     public function __construct($url, $username, $password, $timeout = 3)
49 48
     {
Please login to merge, or discard this patch.
src/be/kunstmaan/multichain/MultichainHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      * @param $assetTxId
20 20
      * @return bool
21 21
      */
22
-    public function isAssetAvailable($assetTxId){
22
+    public function isAssetAvailable($assetTxId) {
23 23
         $assetInfo = $this->getAssetInfoFromTxId($assetTxId);
24 24
         return !is_null($assetInfo["assetref"]);
25 25
     }
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @param $assetTxId
29 29
      */
30
-    public function waitForAssetAvailability($assetTxId){
31
-        while (!$this->isAssetAvailable($assetTxId)){
30
+    public function waitForAssetAvailability($assetTxId) {
31
+        while (!$this->isAssetAvailable($assetTxId)) {
32 32
             sleep(1);
33 33
         }
34 34
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      * @param $assetTxId
38 38
      * @return mixed
39 39
      */
40
-    public function getAssetInfoFromTxId($assetTxId){
40
+    public function getAssetInfoFromTxId($assetTxId) {
41 41
         $assetInfo = $this->multichain->listAssets($assetTxId);
42 42
         return $assetInfo[0];
43 43
     }
Please login to merge, or discard this patch.