public function RequestBuilder::addPathVariable in Auth0 Single Sign On 8.2
Add a path variable.
Parameters
string $variable Path variable to add.:
Return value
Deprecated
5.6.0, use $this->addPath() instead.
File
- vendor/
auth0/ auth0-php/ src/ API/ Helpers/ RequestBuilder.php, line 177
Class
- RequestBuilder
- Class RequestBuilder
Namespace
Auth0\SDK\API\HelpersCode
public function addPathVariable($variable) {
$this->path[] = $variable;
return $this;
}