Completed
Push — master ( eca9d2...97a5f5 )
by Derek
02:04
created
src/Anshar/Http/Uri.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
         $fragment_part    = '(?:#(?P<fragment>.+))?';
396 396
         $reg_end          = '/';
397 397
 
398
-        $uri_syntax = $reg_start . $scheme_part . $scheme_separator . $hier_part . $query_part . $fragment_part .
398
+        $uri_syntax = $reg_start.$scheme_part.$scheme_separator.$hier_part.$query_part.$fragment_part.
399 399
             $reg_end;
400 400
 
401 401
         $uri_valid = preg_match($uri_syntax, $uri, $parts);
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
         $path_part      = '(?P<path>.+)';
427 427
         $reg_end        = '/';
428 428
 
429
-        $hier_part_syntax = $reg_start . $authority_part . $path_part . $reg_end;
429
+        $hier_part_syntax = $reg_start.$authority_part.$path_part.$reg_end;
430 430
 
431 431
         preg_match($hier_part_syntax, $hier_part, $hier_parts);
432 432
 
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
         $port_part      = '(?::(?P<port>[0-9]+))?';
457 457
         $reg_end        = '/';
458 458
 
459
-        $authority_syntax = $reg_start . $user_info_part . $host_part . $port_part . $reg_end;
459
+        $authority_syntax = $reg_start.$user_info_part.$host_part.$port_part.$reg_end;
460 460
 
461 461
         preg_match($authority_syntax, $authority, $authority_parts);
462 462
 
Please login to merge, or discard this patch.