芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/mockery/mockery/library/Mockery/CountValidator/CountValidatorAbstract.php
_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); }