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 ( b8b6ed...e7dc15 )
by Roderik
03:07
created
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.