Completed
Push — master ( 1f6ac4...6f5fe5 )
by Russell
02:50
created
src/Controller/VerifiableController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
     {
152 152
         $refl = new \ReflectionClass(__CLASS__);
153 153
         $const = array_search($status, $refl->getConstants());
154
-        $keyJson = file_get_contents(realpath(__DIR__) . '/../../statuses.json');
154
+        $keyJson = file_get_contents(realpath(__DIR__).'/../../statuses.json');
155 155
         $keyMap = json_decode($keyJson, true);
156 156
         $defn = '';
157 157
 
Please login to merge, or discard this patch.
src/Backend/Chainpoint/Gateway.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
             }
133 133
 
134 134
             if ($rel) {
135
-                $url = ($rel ? $this->getDiscoveredNodes()[0] : '')  . $url;
135
+                $url = ($rel ? $this->getDiscoveredNodes()[0] : '').$url;
136 136
             }
137 137
 
138 138
             return $client->$method($url, $payload);
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 
166 166
         $limit = (int) $this->config()->get('discover_node_count') ?: 1;
167 167
         $chainpointUrls = $this->config()->get('chainpoint_urls');
168
-        $url = $chainpointUrls[rand(0,2)];
168
+        $url = $chainpointUrls[rand(0, 2)];
169 169
         $response = $this->client($url, 'GET', [], false);
170 170
 
171 171
         if ($response->getStatusCode() !== 200) {
Please login to merge, or discard this patch.