@@ -163,7 +163,7 @@ public function getPartialDoc(string $collectionName, PartialSelect $partialSele
163163 * @return \Traversable list of docs
164164 * @throws UnknownCollection
165165 */
166- public function filterDocs (string $ collectionName , Filter $ filter , int $ skip = null , int $ limit = null , OrderBy $ orderBy = null ): \Traversable ;
166+ public function filterDocs (string $ collectionName , Filter $ filter , ? int $ skip = null , ? int $ limit = null , ? OrderBy $ orderBy = null ): \Traversable ;
167167
168168 /**
169169 * @param string $collectionName
@@ -174,7 +174,7 @@ public function filterDocs(string $collectionName, Filter $filter, int $skip = n
174174 * @return \Traversable list of docs with key being the docId and value being the stored doc
175175 * @throws UnknownCollection
176176 */
177- public function findDocs (string $ collectionName , Filter $ filter , int $ skip = null , int $ limit = null , OrderBy $ orderBy = null ): \Traversable ;
177+ public function findDocs (string $ collectionName , Filter $ filter , ? int $ skip = null , ? int $ limit = null , ? OrderBy $ orderBy = null ): \Traversable ;
178178
179179 /**
180180 * @param string $collectionName
@@ -186,7 +186,7 @@ public function findDocs(string $collectionName, Filter $filter, int $skip = nul
186186 * @return \Traversable list of docs with key being the docId and value being the stored doc
187187 * @throws UnknownCollection
188188 */
189- public function findPartialDocs (string $ collectionName , PartialSelect $ partialSelect , Filter $ filter , int $ skip = null , int $ limit = null , OrderBy $ orderBy = null ): \Traversable ;
189+ public function findPartialDocs (string $ collectionName , PartialSelect $ partialSelect , Filter $ filter , ? int $ skip = null , ? int $ limit = null , ? OrderBy $ orderBy = null ): \Traversable ;
190190
191191 /**
192192 * @param string $collectionName
0 commit comments