OAuthSimple::setURL PHP Метод

setURL() публичный Метод

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")
Результат OAuthSimple
    public function setURL($path)
    {
        if (empty($path)) {
            throw new OAuthSimpleException('No path specified for OAuthSimple.setURL');
        }
        $this->_path = $path;
        return $this;
    }