* @package phpQr */ interface QRByte { /** * Retrieve the mode * * @return int The mode */ public function getMode(); /** * Retrieve the length * * @return int The length */ public function getLength(); /** * Write data to byte * * @param QRBitBuffer $buffer The data to write into byte */ public function write(QRBitBuffer $buffer); }