Completed
Push — master ( 4f406e...293c4f )
by Derek
02:26
created
src/Anshar/Http/UriParts/Authority.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     public function __toString()
99 99
     {
100
-        return $this->user_info->toUriString() . $this->host->toUriString() . $this->port->toUriString();
100
+        return $this->user_info->toUriString().$this->host->toUriString().$this->port->toUriString();
101 101
     }
102 102
 
103 103
     /**
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
         $port_part      = '(?::(?\'port\'[0-9]+))?';
119 119
         $reg_end        = '/';
120 120
 
121
-        $authority_syntax = $reg_start . $user_info_part . $host_part . $port_part . $reg_end;
121
+        $authority_syntax = $reg_start.$user_info_part.$host_part.$port_part.$reg_end;
122 122
 
123 123
         preg_match($authority_syntax, $authority, $authority_parts);
124 124
 
Please login to merge, or discard this patch.