8889841chome/clixcotz/mars.clix.co.tz/vendor/mockery/mockery/library/Mockery/HigherOrderMessage.php000066600000002461150541221420026206 0ustar00mock = $mock; $this->method = $method; } /** * @return \Mockery\Expectation */ public function __call($method, $args) { if ($this->method === 'shouldNotHaveReceived') { return $this->mock->{$this->method}($method, $args); } $expectation = $this->mock->{$this->method}($method); return $expectation->withArgs($args); } }