@@ -265,6 +265,8 @@ |
||
265 | 265 | /** |
266 | 266 | * Get resolved member. |
267 | 267 | * |
268 | + * @param integer $offset |
|
269 | + * @param integer $limit |
|
268 | 270 | * @return Generator |
269 | 271 | */ |
270 | 272 | public function getResolvedMembers(?int $offset = null, ?int $limit = null): ?Generator |
@@ -722,6 +722,8 @@ |
||
722 | 722 | /** |
723 | 723 | * Get resolved groups. |
724 | 724 | * |
725 | + * @param integer $offset |
|
726 | + * @param integer $limit |
|
725 | 727 | * @return Generator |
726 | 728 | */ |
727 | 729 | public function getResolvedGroups(?int $offset = null, ?int $limit = null): ?Generator |
@@ -195,6 +195,7 @@ |
||
195 | 195 | |
196 | 196 | /** |
197 | 197 | * Filesystem factory. |
198 | + * @param User $user |
|
198 | 199 | */ |
199 | 200 | public function getFilesystem(?User $user = null): Filesystem |
200 | 201 | { |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | * @param string $class Force set node type |
211 | 211 | * @param bool $multiple Allow $id to be an array |
212 | 212 | * @param bool $allow_root Allow instance of root collection |
213 | - * @param bool $deleted How to handle deleted node |
|
213 | + * @param integer $deleted How to handle deleted node |
|
214 | 214 | */ |
215 | 215 | protected function _getNode( |
216 | 216 | ?string $id = null, |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | * @param string $id |
243 | 243 | * @param string $path |
244 | 244 | * @param string $class Force set node type |
245 | - * @param bool $deleted How to handle deleted node |
|
245 | + * @param integer $deleted How to handle deleted node |
|
246 | 246 | */ |
247 | 247 | protected function _getNodes( |
248 | 248 | $id = null, |
@@ -249,6 +249,8 @@ discard block |
||
249 | 249 | * Load nodes by id. |
250 | 250 | * |
251 | 251 | * @param null|mixed $class |
252 | + * @param string $id |
|
253 | + * @param string $path |
|
252 | 254 | */ |
253 | 255 | public function getNodes(?array $id = null, ?array $path = null, $class = null, int $deleted = NodeInterface::DELETED_EXCLUDE): Generator |
254 | 256 | { |
@@ -277,9 +279,10 @@ discard block |
||
277 | 279 | /** |
278 | 280 | * Load node. |
279 | 281 | * |
280 | - * @param null|mixed $id |
|
281 | - * @param null|mixed $path |
|
282 | + * @param string|null $id |
|
283 | + * @param string|null $path |
|
282 | 284 | * @param null|mixed $class |
285 | + * @param integer $deleted |
|
283 | 286 | */ |
284 | 287 | public function getNode($id = null, $path = null, $class = null, bool $multiple = false, bool $allow_root = false, ?int $deleted = null): NodeInterface |
285 | 288 | { |
@@ -359,7 +362,7 @@ discard block |
||
359 | 362 | * @param string $class Force set node type |
360 | 363 | * @param bool $multiple Allow $id to be an array |
361 | 364 | * @param bool $allow_root Allow instance of root collection |
362 | - * @param bool $deleted How to handle deleted node |
|
365 | + * @param integer $deleted How to handle deleted node |
|
363 | 366 | */ |
364 | 367 | protected function _getNode( |
365 | 368 | ?string $id = null, |
@@ -391,7 +394,7 @@ discard block |
||
391 | 394 | * @param string $id |
392 | 395 | * @param string $path |
393 | 396 | * @param string $class Force set node type |
394 | - * @param bool $deleted How to handle deleted node |
|
397 | + * @param integer $deleted How to handle deleted node |
|
395 | 398 | */ |
396 | 399 | protected function _getNodes( |
397 | 400 | $id = null, |
@@ -348,6 +348,7 @@ |
||
348 | 348 | |
349 | 349 | /** |
350 | 350 | * Get stored file. |
351 | + * @param string $hash |
|
351 | 352 | */ |
352 | 353 | protected function getFileByHash(?string $hash): ?array |
353 | 354 | { |
@@ -73,7 +73,7 @@ |
||
73 | 73 | * @param string $class Force set node type |
74 | 74 | * @param bool $multiple Allow $id to be an array |
75 | 75 | * @param bool $allow_root Allow instance of root collection |
76 | - * @param bool $deleted How to handle deleted node |
|
76 | + * @param integer $deleted How to handle deleted node |
|
77 | 77 | */ |
78 | 78 | protected function _getNode( |
79 | 79 | ?string $id = null, |
@@ -89,6 +89,8 @@ |
||
89 | 89 | |
90 | 90 | /** |
91 | 91 | * Get slaves. |
92 | + * @param integer $offset |
|
93 | + * @param integer $limit |
|
92 | 94 | */ |
93 | 95 | public function getSlaves(File $node, array $query = [], ?int $offset = null, ?int $limit = null, ?int &$total = null): iterable |
94 | 96 | { |
@@ -98,6 +98,7 @@ discard block |
||
98 | 98 | |
99 | 99 | /** |
100 | 100 | * Build a single dimension array with all nodes. |
101 | + * @param integer[] $cursor |
|
101 | 102 | */ |
102 | 103 | public function buildFeedFromCurrentState(?array $cursor = null, int $limit = 100, ?NodeInterface $node = null): array |
103 | 104 | { |
@@ -220,6 +221,7 @@ discard block |
||
220 | 221 | |
221 | 222 | /** |
222 | 223 | * Get delta feed with changes and cursor. |
224 | + * @param NodeInterface $node |
|
223 | 225 | */ |
224 | 226 | public function getDeltaFeed(?string $cursor = null, int $limit = 250, ?NodeInterface $node = null): array |
225 | 227 | { |
@@ -327,6 +329,7 @@ discard block |
||
327 | 329 | |
328 | 330 | /** |
329 | 331 | * Get event log. |
332 | + * @param NodeInterface $node |
|
330 | 333 | */ |
331 | 334 | public function getEventLog(array $query = [], int $limit = 100, int $skip = 0, ?NodeInterface $node = null, ?int &$total = null): iterable |
332 | 335 | { |
@@ -584,6 +587,7 @@ discard block |
||
584 | 587 | |
585 | 588 | /** |
586 | 589 | * Get children with custom filter. |
590 | + * @param integer $limit |
|
587 | 591 | */ |
588 | 592 | protected function findNodeAttributesWithCustomFilter( |
589 | 593 | ?array $filter = null, |