Skip to content

Commit

Permalink
Remove stray (
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Oct 9, 2017
1 parent 52d94fe commit 26889bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Validation/Validation.php
Expand Up @@ -911,7 +911,7 @@ public static function url($check, $strict = false)
static::_populateIp();

$emoji = '\x{1F190}-\x{1F9EF}';
$alpha = '0-9(\p{L}\p{N}' . $emoji;
$alpha = '0-9\p{L}\p{N}' . $emoji;
$hex = '(%[0-9a-f]{2})';
$subDelimiters = preg_quote('/!"$&\'()*+,-.@_:;=~[]', '/');
$path = '([' . $subDelimiters . $alpha . ']|' . $hex . ')';
Expand Down

0 comments on commit 26889bb

Please sign in to comment.