diff --git a/src/Uri.php b/src/Uri.php index 08e24063a..943182385 100644 --- a/src/Uri.php +++ b/src/Uri.php @@ -1322,7 +1322,7 @@ protected static function normalizeFragment($fragment) */ protected static function decodeUrlEncodedChars($input, $allowed = '') { - $decodeCb = function($match) use ($allowed) { + $decodeCb = function ($match) use ($allowed) { $char = rawurldecode($match[0]); if (preg_match($allowed, $char)) { return $char;