Test Failed
Push — master ( ec5caf...3936e4 )
by Witold
36s
created
src/RequestIdProviderFactory.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,6 +47,6 @@
 block discarded – undo
47 47
      */
48 48
     public function create(ServerRequestInterface $request)
49 49
     {
50
-       return new RequestIdProvider($request, $this->generator,  $this->allowOverride,  $this->requestHeader);
50
+        return new RequestIdProvider($request, $this->generator,  $this->allowOverride,  $this->requestHeader);
51 51
     }
52 52
 }
53 53
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,6 +47,6 @@
 block discarded – undo
47 47
      */
48 48
     public function create(ServerRequestInterface $request)
49 49
     {
50
-       return new RequestIdProvider($request, $this->generator,  $this->allowOverride,  $this->requestHeader);
50
+       return new RequestIdProvider($request, $this->generator, $this->allowOverride, $this->requestHeader);
51 51
     }
52 52
 }
53 53
\ No newline at end of file
Please login to merge, or discard this patch.
src/Generator/PrefixedGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     public function generateRequestId()
24 24
     {
25
-        return $this->prefix . $this->generator->generateRequestId();
25
+        return $this->prefix.$this->generator->generateRequestId();
26 26
     }
27 27
 }
Please login to merge, or discard this patch.