Horde_ActiveSync_Wbxml_Decoder::_getStringTable PHP Method

_getStringTable() protected method

Fetch the string table. Don't think we use the results anywhere though.
protected _getStringTable ( ) : string
return string The string table.
    protected function _getStringTable()
    {
        $stringtable = '';
        $length = $this->_getMBUInt();
        if ($length > 0) {
            $stringtable = $this->_stream->substring(0, $length);
        }
        return $stringtable;
    }