Completed
Push — master ( 921733...8b5d96 )
by Iqbal
02:41
created
src/ServerBag.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,7 @@
 block discarded – undo
27 27
         foreach ($this->parameters as $key => $value) {
28 28
             if (0 === strpos($key, 'HTTP_')) {
29 29
                 $headers[substr($key, 5)] = $value;
30
-            }
31
-            elseif (0 === strpos($key, 'CONTENT_')) {
30
+            } elseif (0 === strpos($key, 'CONTENT_')) {
32 31
                 $headers[$key] = $value;
33 32
             }
34 33
         }
Please login to merge, or discard this patch.
src/Uri.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -197,8 +197,7 @@
 block discarded – undo
197 197
             $uri = $this->getUri();
198 198
             if (empty($uri)) {
199 199
                 $this->basePath = '';
200
-            }
201
-            else {
200
+            } else {
202 201
                 if (basename($this->getUri()) === basename($this->server->get('SCRIPT_NAME'))) {
203 202
                     $basePath = dirname($this->getUri());
204 203
                 } else {
Please login to merge, or discard this patch.