private function UriTemplate::decodeReserved in Auth0 Single Sign On 8.2
Removes percent encoding on reserved characters (used with + and # modifiers).
Parameters
string $string String to fix:
Return value
string
1 call to UriTemplate::decodeReserved()
- UriTemplate::expandMatch in vendor/
guzzlehttp/ guzzle/ src/ UriTemplate.php - Process an expansion
File
- vendor/
guzzlehttp/ guzzle/ src/ UriTemplate.php, line 233
Class
- UriTemplate
- Expands URI templates. Userland implementation of PECL uri_template.
Namespace
GuzzleHttpCode
private function decodeReserved($string) {
return str_replace(self::$delimsPct, self::$delims, $string);
}