Skip to content

Commit

Permalink
Update SolrEngine.php
Browse files Browse the repository at this point in the history
feat: add stubs methods
  • Loading branch information
abettini authored Aug 19, 2022
1 parent c4db217 commit fa4c886
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/SolrEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,19 @@ protected function filters(Builder $builder)
return \sprintf('%s:"%s"', $key, $value);
})->values()->all();
}

public function lazyMap(Builder $builder, $results, $model)
{
throw new \Exception("Not Implemented");
}

public function createIndex($name, array $options = [])
{
throw new \Exception("Not Implemented");
}

public function deleteIndex($name)
{
throw new \Exception("Not Implemented");
}
}

0 comments on commit fa4c886

Please sign in to comment.