Passed
Push — master ( 9c99b6...17c429 )
by Dāvis
03:17
created
Script/Utils/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.
DependencyInjection/Requirement/AbstractRequirement.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,9 +17,10 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.