Completed
Push — master ( a5c053...b57f56 )
by Raffael
15:30 queued 11:35
created
src/lib/Filesystem.php 1 patch
Doc Comments   +9 added lines, -2 removed lines patch added patch discarded remove patch
@@ -383,6 +383,8 @@  discard block
 block discarded – undo
383 383
      * Load nodes by id.
384 384
      *
385 385
      * @param null|mixed $class
386
+     * @param string $id
387
+     * @param string $path
386 388
      */
387 389
     public function getNodes(?array $id = null, ?array $path = null, $class = null, int $deleted = NodeInterface::DELETED_EXCLUDE): Generator
388 390
     {
@@ -411,9 +413,10 @@  discard block
 block discarded – undo
411 413
     /**
412 414
      * Load node.
413 415
      *
414
-     * @param null|mixed $id
415
-     * @param null|mixed $path
416
+     * @param string|null $id
417
+     * @param string|null $path
416 418
      * @param null|mixed $class
419
+     * @param integer $deleted
417 420
      */
418 421
     public function getNode($id = null, $path = null, $class = null, bool $multiple = false, bool $allow_root = false, ?int $deleted = null): NodeInterface
419 422
     {
@@ -465,6 +468,8 @@  discard block
 block discarded – undo
465 468
 
466 469
     /**
467 470
      * Find nodes with custom filters.
471
+     * @param integer $offset
472
+     * @param integer $limit
468 473
      */
469 474
     public function findNodesByFilter(array $filter, ?int $offset = null, ?int $limit = null): Generator
470 475
     {
@@ -491,6 +496,8 @@  discard block
 block discarded – undo
491 496
 
492 497
     /**
493 498
      * Get custom filtered children.
499
+     * @param integer $offset
500
+     * @param integer $limit
494 501
      */
495 502
     public function findNodesByFilterUser(int $deleted, array $filter, ?int $offset = null, ?int $limit = null): Generator
496 503
     {
Please login to merge, or discard this patch.