OAuthSimple::setURL PHP Method

setURL() public method

Set the target URL (does not include the parameters)
public setURL ( string $path ) : OAuthSimple
$path string The fully qualified URI (excluding query arguments) (e.g "http://example.org/foo")
return OAuthSimple
    public function setURL($path)
    {
        if (empty($path)) {
            throw new OAuthSimpleException('No path specified for OAuthSimple.setURL');
        }
        $this->_path = $path;
        return $this;
    }