Auth0\SDK\API\Helpers\RequestBuilder::addPath PHP Method

addPath() public method

public addPath ( $name, $argument = null )
    public function addPath($name, $argument = null)
    {
        $this->path[] = $name;
        if ($argument !== null) {
            $this->path[] = $argument;
        }
        return $this;
    }