/home/techb158/dev.balacoffee.com/vendor/mockery/mockery/library/Mockery
NameSizeModeActions
Adapter/-0755rm
CountValidator/-0755rm
Exception/-0755rm
Generator/-0755rm
Loader/-0755rm
Matcher/-0755rm
ClosureWrapper.php6330644editdlrm
CompositeExpectation.php36200644editdlrm
Configuration.php80380644editdlrm
Container.php156060644editdlrm
Exception.php4630644editdlrm
Expectation.php242270644editdlrm
ExpectationDirector.php55630644editdlrm
ExpectationInterface.php7020644editdlrm
ExpectsHigherOrderMessage.php7030644editdlrm
HigherOrderMessage.php9480644editdlrm
Instantiator.php42200644editdlrm
LegacyMockInterface.php57450644editdlrm
MethodCall.php6520644editdlrm
Mock.php290600644editdlrm
MockInterface.php8780644editdlrm
QuickDefinitionsConfiguration.php17800644editdlrm
ReceivedMethodCalls.php9410644editdlrm
Reflector.php84070644editdlrm
Undefined.php7810644editdlrm
VerificationDirector.php27400644editdlrm
VerificationExpectation.php5770644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/mockery/mockery/library/Mockery/VerificationDirector.php (2740B)
receivedMethodCalls = $receivedMethodCalls; $this->expectation = $expectation; } public function verify() { return $this->receivedMethodCalls->verify($this->expectation); } public function with(...$args) { return $this->cloneApplyAndVerify("with", $args); } public function withArgs($args) { return $this->cloneApplyAndVerify("withArgs", array($args)); } public function withNoArgs() { return $this->cloneApplyAndVerify("withNoArgs", array()); } public function withAnyArgs() { return $this->cloneApplyAndVerify("withAnyArgs", array()); } public function times($limit = null) { return $this->cloneWithoutCountValidatorsApplyAndVerify("times", array($limit)); } public function once() { return $this->cloneWithoutCountValidatorsApplyAndVerify("once", array()); } public function twice() { return $this->cloneWithoutCountValidatorsApplyAndVerify("twice", array()); } public function atLeast() { return $this->cloneWithoutCountValidatorsApplyAndVerify("atLeast", array()); } public function atMost() { return $this->cloneWithoutCountValidatorsApplyAndVerify("atMost", array()); } public function between($minimum, $maximum) { return $this->cloneWithoutCountValidatorsApplyAndVerify("between", array($minimum, $maximum)); } protected function cloneWithoutCountValidatorsApplyAndVerify($method, $args) { $expectation = clone $this->expectation; $expectation->clearCountValidators(); call_user_func_array(array($expectation, $method), $args); $director = new VerificationDirector($this->receivedMethodCalls, $expectation); $director->verify(); return $director; } protected function cloneApplyAndVerify($method, $args) { $expectation = clone $this->expectation; call_user_func_array(array($expectation, $method), $args); $director = new VerificationDirector($this->receivedMethodCalls, $expectation); $director->verify(); return $director; } }