Completed
Push — master ( 028100...eaca17 )
by Derek
02:07
created
src/Anshar/Http/Uri.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     public function getAuthority()
109 109
     {
110
-        return $this->user_info->toUriString() . $this->host->toUriString() . $this->port->toUriString($this->scheme);
110
+        return $this->user_info->toUriString().$this->host->toUriString().$this->port->toUriString($this->scheme);
111 111
     }
112 112
 
113 113
     /**
@@ -479,8 +479,7 @@  discard block
 block discarded – undo
479 479
      */
480 480
     private function explodeUri($uri)
481 481
     {
482
-        $uri_parts = array
483
-        (
482
+        $uri_parts = array(
484 483
             "scheme"    => "",
485 484
             "hier_part" => "",
486 485
             "authority" => "",
@@ -515,7 +514,7 @@  discard block
 block discarded – undo
515 514
         $fragment_part  = '(?:#(?\'fragment\'.*))?';
516 515
         $reg_end        = '/';
517 516
 
518
-        return $reg_start . $scheme_part . $authority_part . $path_part . $query_part . $fragment_part . $reg_end;
517
+        return $reg_start.$scheme_part.$authority_part.$path_part.$query_part.$fragment_part.$reg_end;
519 518
     }
520 519
 
521 520
     /**
Please login to merge, or discard this patch.