Skip to content

Commit d5dfdce

Browse files
author
Alexander Miertsch
authored
Merge pull request #3 from martin-schilling/master
Updated InnerDocumentStore for compatibility with the new changes to the DocumentStore interface
2 parents 775c3d5 + 4ca66fd commit d5dfdce

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/InnerDocumentStore.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,16 @@ public function filterDocs(string $collectionName, Filter $filter, int $skip = n
182182
return $this->documentStore->filterDocs($collectionName, $filter, $skip, $limit, $orderBy);
183183
}
184184

185+
/**
186+
* @param string $collectionName
187+
* @param Filter $filter
188+
* @return array
189+
*/
190+
public function filterDocIds(string $collectionName, Filter $filter): array
191+
{
192+
return $this->documentStore->filterDocIds($collectionName, $filter);
193+
}
194+
185195
/**
186196
* @param string $collectionName
187197
* @param Filter $filter

0 commit comments

Comments
 (0)