Passed
Push — master ( 749857...c9ef61 )
by Denis
04:00 queued 10s
created
DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
                                 ->always()
52 52
                                 // here we force casting `float` to `string` to avoid TypeError when working with Redis
53 53
                                 // see for more details: https://github.com/phpredis/phpredis/issues/1538
54
-                                ->then(function ($v) { return (string) $v; })
54
+                                ->then(function($v) { return (string) $v; })
55 55
                             ->end()
56 56
                         ->end()
57 57
                         ->booleanNode('persistent_connections')->end()
Please login to merge, or discard this patch.
Metrics/AppMetrics.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
             $this->inc5xxResponsesTotal($requestMethod, $requestRoute);
104 104
         }
105 105
 
106
-        if($this->stopwatch && $this->stopwatch->isStarted('execution_time')) {
106
+        if ($this->stopwatch && $this->stopwatch->isStarted('execution_time')) {
107 107
             $evt = $this->stopwatch->stop('execution_time');
108 108
             if (null !== $evt) {
109 109
                 $this->setRequestDuration($evt->getDuration() / 1000, $requestMethod, $requestRoute);
Please login to merge, or discard this patch.
Tests/BundleInMemoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             self::getVarDir(),
30 30
             $options['test_case'],
31 31
             $options['root_config'] ?? 'config.yml',
32
-            $options['environment'] ?? strtolower(static::getVarDir() . $options['test_case']),
32
+            $options['environment'] ?? strtolower(static::getVarDir().$options['test_case']),
33 33
             $options['debug'] ?? true
34 34
         );
35 35
     }
Please login to merge, or discard this patch.
Tests/BundleRedisTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             self::getVarDir(),
30 30
             $options['test_case'],
31 31
             $options['root_config'] ?? 'config.yml',
32
-            $options['environment'] ?? strtolower(static::getVarDir() . $options['test_case']),
32
+            $options['environment'] ?? strtolower(static::getVarDir().$options['test_case']),
33 33
             $options['debug'] ?? true
34 34
         );
35 35
     }
Please login to merge, or discard this patch.