Horde_Token_Base::get PHP Метод

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

Return a new signed token.
public get ( string $seed = '' ) : string
$seed string A unique ID to be included in the token.
Результат string The new token.
    public function get($seed = '')
    {
        $nonce = $this->getNonce();
        return Horde_Url::uriB64Encode($nonce . $this->_hash($nonce . $seed));
    }