Passed
Pull Request — master (#3)
by frey
01:55
created
src/Kernel/Traits/WithFingerprint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
         $srcStr = implode("\n", [
19 19
             $method,
20
-            parse_url($url, PHP_URL_HOST) . parse_url($url, PHP_URL_PATH),
20
+            parse_url($url, PHP_URL_HOST).parse_url($url, PHP_URL_PATH),
21 21
             json_encode($params, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)
22 22
         ]);
23 23
 
Please login to merge, or discard this patch.
src/Kernel/BaseClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         if ($this->app->withFingerprint()) {
187 187
             $headers['Fingerprint'] = $this->fingerprint(
188 188
                 $method,
189
-                $this->baseUri . $url,
189
+                $this->baseUri.$url,
190 190
                 ($options['json'] ?? []) + ($options['form_params'] ?? []) + ($options['query'] ?? [])
191 191
             );
192 192
         }
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      */
235 235
     protected function jaegerMiddleware()
236 236
     {
237
-        return Middleware::mapRequest(function (RequestInterface $request) {
237
+        return Middleware::mapRequest(function(RequestInterface $request) {
238 238
 
239 239
             if ($headers = $this->app['config']->get('jaeger.headers', [])) {
240 240
 
Please login to merge, or discard this patch.