Passed
Push — master ( b08ede...d019b1 )
by frey
54s queued 12s
created
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.
src/FingerprintMiddleware.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
         $authorization = preg_replace('/^hmac/i', '', $authorization);
47 47
         $params = array_map('trim', explode(',', $authorization));
48 48
 
49
-        $params = array_map(function ($item) {
49
+        $params = array_map(function($item) {
50 50
             parse_str($item, $parsed);
51
-            return array_map(function ($value) {
51
+            return array_map(function($value) {
52 52
                 return trim($value, '"\'');
53 53
             }, $parsed);
54 54
         }, $params);
Please login to merge, or discard this patch.