/var/www/flurhymez/vendor/mockery/mockery/library/Mockery/CountValidator
Edit: /var/www/flurhymez/vendor/mockery/mockery/library/Mockery/CountValidator/CountValidatorAbstract.php (1689B)
_expectation = $expectation;
$this->_limit = $limit;
}
/**
* Checks if the validator can accept an additional nth call
*
* @param int $n
* @return bool
*/
public function isEligible($n)
{
return ($n < $this->_limit);
}
/**
* Validate the call count against this validator
*
* @param int $n
* @return bool
*/
abstract public function validate($n);
}