Passed
Push — master ( 4e759b...00b414 )
by Russell
12:27
created
src/Backend/Chainpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@
 block discarded – undo
201 201
 
202 202
         $limit = (int) $this->config()->get('discover_node_count') ?: 1;
203 203
         $chainpointUrls = $this->config()->get('chainpoint_urls');
204
-        $url = $chainpointUrls[rand(0,2)];
204
+        $url = $chainpointUrls[rand(0, 2)];
205 205
         $response = $this->client($url, 'GET', [], false);
206 206
 
207 207
         if ($response->getStatusCode() !== 200) {
Please login to merge, or discard this patch.
src/Verify/VerifiableExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
         $owner = $this->getOwner();
114 114
         $list = [];
115 115
         $versions = $owner->Versions()->sort('Version');
116
-        $keyTable = file_get_contents(realpath(__DIR__) . '/../../doc/statuses.html');
116
+        $keyTable = file_get_contents(realpath(__DIR__).'/../../doc/statuses.html');
117 117
 
118 118
         foreach ($versions as $item) {
119 119
             $list[$item->Version] = sprintf('Version: %s (Created: %s)', $item->Version, $item->Created);
Please login to merge, or discard this patch.