|
@@ -133,7 +133,7 @@ discard block |
|
|
block discarded – undo |
|
133
|
133
|
*/ |
|
134
|
134
|
public function getAuthority() |
|
135
|
135
|
{ |
|
136
|
|
- return $this->user_info->toUriString() . $this->host->toUriString() . $this->port->toUriString($this->scheme); |
|
|
136
|
+ return $this->user_info->toUriString().$this->host->toUriString().$this->port->toUriString($this->scheme); |
|
137
|
137
|
} |
|
138
|
138
|
|
|
139
|
139
|
/** |
|
@@ -529,7 +529,7 @@ discard block |
|
|
block discarded – undo |
|
529
|
529
|
$fragment_part = '(?:#(?\'fragment\'.*))?'; |
|
530
|
530
|
$reg_end = '/'; |
|
531
|
531
|
|
|
532
|
|
- $uri_syntax = $reg_start . $scheme_part . $hier_part . $query_part . $fragment_part . $reg_end; |
|
|
532
|
+ $uri_syntax = $reg_start.$scheme_part.$hier_part.$query_part.$fragment_part.$reg_end; |
|
533
|
533
|
|
|
534
|
534
|
$uri_valid = preg_match($uri_syntax, $uri, $parts); |
|
535
|
535
|
|
|
@@ -564,7 +564,7 @@ discard block |
|
|
block discarded – undo |
|
564
|
564
|
$path_part = '(?\'path\'.+)?'; |
|
565
|
565
|
$reg_end = '/'; |
|
566
|
566
|
|
|
567
|
|
- $hier_part_syntax = $reg_start . $authority_part . $path_part . $reg_end; |
|
|
567
|
+ $hier_part_syntax = $reg_start.$authority_part.$path_part.$reg_end; |
|
568
|
568
|
|
|
569
|
569
|
preg_match($hier_part_syntax, $hier_part, $matches); |
|
570
|
570
|
|
Please login to merge, or discard this patch.