MongolidLaravel\MongolidModel::localMockShouldReceive PHP Method

localMockShouldReceive() protected method

Initiate a mockery expectation that is specific for the given method.
protected localMockShouldReceive ( string $method ) : Expectation
$method string Name of the method being mocked.
return Mockery\Expectation
    protected function localMockShouldReceive(string $method)
    {
        return $this->getLocalMock()->shouldReceive($method);
    }