Passed
Push — master ( 11b724...bd82bf )
by Russell
12:59
created
src/Verify/VerifiableExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
      */
138 138
     public function keyTable()
139 139
     {
140
-        return file_get_contents(realpath(__DIR__) . '/../../doc/statuses.txt');
140
+        return file_get_contents(realpath(__DIR__).'/../../doc/statuses.txt');
141 141
     }
142 142
 
143 143
 }
Please login to merge, or discard this patch.
src/Backend/Chainpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@
 block discarded – undo
195 195
     public function discoverNodes(int $limit = 3)
196 196
     {
197 197
         $chainpointUrls = $this->config()->get('chainpoint_urls');
198
-        $url = $chainpointUrls[rand(0,2)];
198
+        $url = $chainpointUrls[rand(0, 2)];
199 199
         $response = $this->client($url, 'GET', [], false);
200 200
 
201 201
         // TODO: Instead of throwing exception, re-call discoverNodes() and try a new URL
Please login to merge, or discard this patch.