Horde_Imsp_Client_Base::_getNextCommandTag PHP Méthode

_getNextCommandTag() protected méthode

Increments the IMSP command tag token.
protected _getNextCommandTag ( ) : string
Résultat string Next command tag.
    protected function _getNextCommandTag()
    {
        $this->_lastCommandTag = $this->_tag ? $this->_tag : 'undefined';
        return $this->_commandPrefix . sprintf('%04d', $this->_commandCount++);
    }