You are here

public function RequestBuilder::addPathVariable in Auth0 Single Sign On 8.2

Add a path variable.

Parameters

string $variable Path variable to add.:

Return value

RequestBuilder

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\Helpers

Code

public function addPathVariable($variable) {
  $this->path[] = $variable;
  return $this;
}