MongolidLaravel\MongolidModel::localMockHasExpectationsFor PHP Method

localMockHasExpectationsFor() protected method

Check for a expectation for given method on local mock.
protected localMockHasExpectationsFor ( string $method ) : boolean
$method string Name of the method being checked.
return boolean
    protected function localMockHasExpectationsFor(string $method) : bool
    {
        return $this->hasLocalMock() && $this->getLocalMock()->mockery_getExpectationsFor($method);
    }