public function checkChars($value) { if (strlen($value) != 8
) { if (strpos($value, 'X'
) !== false
) { return false;
} } return parent::
checkChars($value);
} /**
* Validates the checksum
*
* @param string $value The barcode to check the checksum for
* @return boolean
*/
public function checksum($value) { if (strlen($value) == 8
) {