Passed
Push — master ( 071447...cb43db )
by Florian
03:35 queued 01:23
created
src/DependencyInjection/CorrelationIdExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
         $yamlLoader = new Loader\YamlFileLoader(
29 29
             $container,
30
-            new FileLocator(__DIR__ . '/../../config')
30
+            new FileLocator(__DIR__.'/../../config')
31 31
         );
32 32
 
33 33
         $yamlLoader->load('services.yaml');
Please login to merge, or discard this patch.
src/EventSubscriber/CorrelationIdSubscriber.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,15 +25,15 @@
 block discarded – undo
25 25
     public function __construct(array $config = [])
26 26
     {
27 27
         if (isset($config['request_header_name'])) {
28
-            $this->requestHeaderName = (string)$config['request_header_name'];
28
+            $this->requestHeaderName = (string) $config['request_header_name'];
29 29
         }
30 30
 
31 31
         if (isset($config['response_header_name'])) {
32
-            $this->responseHeaderName = (string)$config['response_header_name'];
32
+            $this->responseHeaderName = (string) $config['response_header_name'];
33 33
         }
34 34
 
35 35
         if (isset($config['pass_through'])) {
36
-            $this->passthrough = (bool)$config['pass_through'];
36
+            $this->passthrough = (bool) $config['pass_through'];
37 37
         }
38 38
     }
39 39
 
Please login to merge, or discard this patch.