array('A','A'), 1 => array('A','B'), 2 => array('B','A'), 3 => array('B','B') ); /** * Default options for Ean2 barcode * @return void */ protected function getDefaultOptions() { $this->barcodeLength = 2; } protected function getParity($i) { $modulo = $this->getText() % 4; return $this->parities[$modulo][$i]; } }