return true;
} /**
* Validates the checksum
*
* @param string $value The barcode to check the checksum for
* @return boolean
*/
public function checksum($value) { $checksum =
$this->
getChecksum();
if (!
empty($checksum)) { if (method_exists($this,
$checksum)) { return call_user_func(array
($this,
$checksum),
$value);
} } return false;
} /**
* Returns the allowed barcode length
*
* @return string
*/