What is the best practice to validate on multiple values when using a custom Zend Validator? Currently I am passing in an array as $value, but this seems awkward and not very extendable to me. Would there be a better way? Here is a snippet of my validator.:
public function isValid($value=array())
{
$userID=$value["userID"];
$applicationID=$value["applicationID"];
/***** Validate next and return, etc.