Passed
Push — master ( f0080c...24771a )
by Pouya
01:18
created
src/ConvertToAbsolutePath.php 1 patch
Braces   +3 added lines, -3 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
         }
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         if($this->pagePathParsing == null) {
220 220
             if(is_string($this->getPagePath())) {
221 221
                 $this->pagePathParsing = parse_url($this->getPagePath());
222
-            }else{
222
+            } else{
223 223
                 $this->pagePathParsing = [];
224 224
             }
225 225
         }
Please login to merge, or discard this patch.