Passed
Push — master ( 92ac41...9b2544 )
by Dāvis
26:15
created
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.
Sitemap/Sitemap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         }
34 34
         $this->limit = $limit;
35 35
         if ($this->isSitemapIndexable()) {
36
-            if($dumper instanceof DumperFileInterface) {
36
+            if ($dumper instanceof DumperFileInterface) {
37 37
                 $this->originalFilename = $dumper->getFilename();
38 38
             }
39 39
         }
Please login to merge, or discard this patch.