public function RequestBuilder::getUrl in Auth0 Single Sign On 8.2
Get the path and URL parameters of this request.
Return value
string
1 call to RequestBuilder::getUrl()
- RequestBuilder::call in vendor/
auth0/ auth0-php/ src/ API/ Helpers/ RequestBuilder.php
File
- vendor/
auth0/ auth0-php/ src/ API/ Helpers/ RequestBuilder.php, line 188
Class
- RequestBuilder
- Class RequestBuilder
Namespace
Auth0\SDK\API\HelpersCode
public function getUrl() {
return trim(implode('/', $this->path), '/') . $this
->getParams();
}