OpenPGP_Packet::read_byte PHP Méthode

read_byte() public méthode

public read_byte ( )
    function read_byte()
    {
        /* Begin Horde change */
        //return ($bytes = $this->read_bytes()) ? $bytes[0] : NULL;
        return ($bytes = $this->read_bytes()) !== false ? $bytes[0] : NULL;
        /* End Horde change */
    }