/home/techb158/ileadtechnology.com/vendor/mockery/mockery/library/Mockery/CountValidator
Edit: /home/techb158/ileadtechnology.com/vendor/mockery/mockery/library/Mockery/CountValidator/AtMost.php (1654B)
_limit < $n) {
$exception = new Mockery\Exception\InvalidCountException(
'Method ' . (string) $this->_expectation
. ' from ' . $this->_expectation->getMock()->mockery_getName()
. ' should be called' . PHP_EOL
. ' at most ' . $this->_limit . ' times but called ' . $n
. ' times.'
);
$exception->setMock($this->_expectation->getMock())
->setMethodName((string) $this->_expectation)
->setExpectedCountComparative('<=')
->setExpectedCount($this->_limit)
->setActualCount($n);
throw $exception;
}
}
}