Passed
Push — master ( 35ed1d...654348 )
by Dāvis
03:01
created
DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
                                         ->scalarNode('format')
54 54
                                             ->beforeNormalization()
55 55
                                                 ->ifInArray(['clf', 'debug', 'short'])
56
-                                                ->then(function ($v) {
56
+                                                ->then(function($v) {
57 57
                                                     return constant('GuzzleHttp\MessageFormatter::'.strtoupper($v));
58 58
                                                 })
59 59
                                             ->end()
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
                                                     'emergency', 'alert', 'critical', 'error',
66 66
                                                     'warning', 'notice', 'info', 'debug',
67 67
                                                 ])
68
-                                                ->then(function ($v) {
68
+                                                ->then(function($v) {
69 69
                                                     return constant('Psr\Log\LogLevel::'.strtoupper($v));
70 70
                                                 })
71 71
                                             ->end()
Please login to merge, or discard this patch.
Http/StreamResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         $chunked = $this->headers->has('Transfer-Encoding');
25 25
         $this->content->seek(0);
26 26
 
27
-        for (; ;) {
27
+        for (;;) {
28 28
             $chunk = $this->content->read($this->bufferSize);
29 29
 
30 30
             if ($chunked) {
Please login to merge, or discard this patch.