@@ -210,23 +210,23 @@ public function getPartialDoc(string $collectionName, PartialSelect $partialSele
210210 /**
211211 * @inheritDoc
212212 */
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
214214 {
215215 return $ this ->documentStore ->filterDocs ($ collectionName , $ filter , $ skip , $ limit , $ orderBy );
216216 }
217217
218218 /**
219219 * @inheritDoc
220220 */
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
222222 {
223223 return $ this ->documentStore ->findDocs ($ collectionName , $ filter , $ skip , $ limit , $ orderBy );
224224 }
225225
226226 /**
227227 * @inheritDoc
228228 */
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
230230 {
231231 return $ this ->documentStore ->findPartialDocs ($ collectionName , $ partialSelect , $ filter , $ skip , $ limit , $ orderBy );
232232 }
0 commit comments