Passed
Push — master ( c08ac5...90c08f )
by Pouya
01:23
created
src/ConvertToAbsolutePath.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -179,9 +179,9 @@  discard block
 block discarded – undo
179 179
         if ($this->domain === null) {
180 180
             if ($this->getBaseTag() === null) {
181 181
                 $this->domain = $this->getPagePathParsing()['host'] . '/';
182
-            }elseif (array_key_exists('scheme', $this->getBaseTagParsing())){
182
+            } elseif (array_key_exists('scheme', $this->getBaseTagParsing())){
183 183
                 $this->domain = $this->getBaseTagParsing()['host'] . '/';
184
-            }else {
184
+            } else {
185 185
                 $this->domain = $this->getPagePathParsing()['host'] . '/';
186 186
             }
187 187
         }
@@ -193,9 +193,9 @@  discard block
 block discarded – undo
193 193
         if ($this->scheme === null) {
194 194
             if ($this->getBaseTag() === null) {
195 195
                 $this->scheme = $this->getPagePathParsing()['scheme'];
196
-            }elseif (array_key_exists('scheme', $this->getBaseTagParsing())){
196
+            } elseif (array_key_exists('scheme', $this->getBaseTagParsing())){
197 197
                 $this->scheme = $this->getBaseTagParsing()['scheme'];
198
-            }else {
198
+            } else {
199 199
                 $this->scheme = $this->getPagePathParsing()['scheme'];
200 200
             }
201 201
         }
Please login to merge, or discard this patch.