@@ -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) { |
@@ -17,9 +17,9 @@ |
||
17 | 17 | |
18 | 18 | abstract public function getRequirements(); |
19 | 19 | |
20 | - public function throwException(){ |
|
20 | + public function throwException() { |
|
21 | 21 | $string = ''; |
22 | - foreach($this->getRequirements() as $requirement){ |
|
22 | + foreach ($this->getRequirements() as $requirement) { |
|
23 | 23 | $string .= $requirement.'\n'; |
24 | 24 | } |
25 | 25 |
@@ -17,9 +17,10 @@ |
||
17 | 17 | |
18 | 18 | abstract public function getRequirements(); |
19 | 19 | |
20 | - public function throwException(){ |
|
20 | + public function throwException() |
|
21 | + { |
|
21 | 22 | $string = ''; |
22 | - foreach($this->getRequirements() as $requirement){ |
|
23 | + foreach($this->getRequirements() as $requirement) { |
|
23 | 24 | $string .= $requirement.'\n'; |
24 | 25 | } |
25 | 26 |