@@ -53,7 +53,7 @@ discard block |
||
| 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 |
||
| 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() |
@@ -24,7 +24,7 @@ |
||
| 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) { |