@@ -210,23 +210,23 @@ public function getPartialDoc(string $collectionName, PartialSelect $partialSele
210
210
/**
211
211
* @inheritDoc
212
212
*/
213
- public function filterDocs (string $ collectionName , Filter $ filter , int $ skip = null , int $ limit = null , OrderBy $ orderBy = null ): \Traversable
213
+ public function filterDocs (string $ collectionName , Filter $ filter , ? int $ skip = null , ? int $ limit = null , ? OrderBy $ orderBy = null ): \Traversable
214
214
{
215
215
return $ this ->documentStore ->filterDocs ($ collectionName , $ filter , $ skip , $ limit , $ orderBy );
216
216
}
217
217
218
218
/**
219
219
* @inheritDoc
220
220
*/
221
- public function findDocs (string $ collectionName , Filter $ filter , int $ skip = null , int $ limit = null , OrderBy $ orderBy = null ): \Traversable
221
+ public function findDocs (string $ collectionName , Filter $ filter , ? int $ skip = null , ? int $ limit = null , ? OrderBy $ orderBy = null ): \Traversable
222
222
{
223
223
return $ this ->documentStore ->findDocs ($ collectionName , $ filter , $ skip , $ limit , $ orderBy );
224
224
}
225
225
226
226
/**
227
227
* @inheritDoc
228
228
*/
229
- public function findPartialDocs (string $ collectionName , PartialSelect $ partialSelect , Filter $ filter , int $ skip = null , int $ limit = null , OrderBy $ orderBy = null ): \Traversable
229
+ public function findPartialDocs (string $ collectionName , PartialSelect $ partialSelect , Filter $ filter , ? int $ skip = null , ? int $ limit = null , ? OrderBy $ orderBy = null ): \Traversable
230
230
{
231
231
return $ this ->documentStore ->findPartialDocs ($ collectionName , $ partialSelect , $ filter , $ skip , $ limit , $ orderBy );
232
232
}
0 commit comments