Completed
Push — master ( 2aab0a...440703 )
by Raffael
19:06 queued 15:05
created
src/lib/Filesystem/Delta.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -90,6 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
     /**
92 92
      * Build a single dimension array with all nodes.
93
+     * @param integer[] $cursor
93 94
      */
94 95
     public function buildFeedFromCurrentState(?array $cursor = null, int $limit = 100, ?NodeInterface $node = null): array
95 96
     {
@@ -212,6 +213,8 @@  discard block
 block discarded – undo
212 213
 
213 214
     /**
214 215
      * Get delta feed with changes and cursor.
216
+     * @param string $cursor
217
+     * @param NodeInterface $node
215 218
      */
216 219
     public function getDeltaFeed(?string $cursor = null, int $limit = 250, ?NodeInterface $node = null): array
217 220
     {
@@ -305,6 +308,7 @@  discard block
 block discarded – undo
305 308
 
306 309
     /**
307 310
      * Get event log.
311
+     * @param NodeInterface $node
308 312
      */
309 313
     public function getEventLog(int $limit = 100, int $skip = 0, ?NodeInterface $node = null, ?int &$total = null): Iterable
310 314
     {
@@ -523,6 +527,7 @@  discard block
 block discarded – undo
523 527
 
524 528
     /**
525 529
      * Get children with custom filter.
530
+     * @param integer $limit
526 531
      */
527 532
     protected function findNodeAttributesWithCustomFilter(
528 533
         ?array $filter = null,
Please login to merge, or discard this patch.
src/app/Balloon.App.Api/v2/Files.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      *
118 118
      * @param string $id
119 119
      * @param string $p
120
-     * @param string $version
120
+     * @param integer $version
121 121
      */
122 122
     public function postRestore(int $version, ?string $id = null, ?string $p = null): Response
123 123
     {
@@ -406,6 +406,9 @@  discard block
 block discarded – undo
406 406
 
407 407
     /**
408 408
      * Get storage.
409
+     * @param string|null $id
410
+     * @param string|null $p
411
+     * @param string|null $collection
409 412
      */
410 413
     protected function getStorage($id, $p, $collection): StorageAdapterInterface
411 414
     {
Please login to merge, or discard this patch.
src/lib/Filesystem/Node/Collection.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -898,6 +898,7 @@
 block discarded – undo
898 898
 
899 899
     /**
900 900
      * Completely remove node.
901
+     * @param string $recursion
901 902
      */
902 903
     protected function _forceDelete(?string $recursion = null, bool $recursion_first = true): bool
903 904
     {
Please login to merge, or discard this patch.
src/lib/Filesystem.php 1 patch
Doc Comments   +10 added lines, -3 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      * Load nodes by id.
276 276
      *
277 277
      * @param string $class   Force check node type
278
-     * @param bool   $deleted
278
+     * @param integer   $deleted
279 279
      */
280 280
     public function findNodesById(array $id = [], ?string $class = null, int $deleted = NodeInterface::DELETED_INCLUDE): Generator
281 281
     {
@@ -367,6 +367,8 @@  discard block
 block discarded – undo
367 367
      * Load nodes by id.
368 368
      *
369 369
      * @param null|mixed $class
370
+     * @param string $id
371
+     * @param string $path
370 372
      */
371 373
     public function getNodes(?array $id = null, ?array $path = null, $class = null, int $deleted = NodeInterface::DELETED_EXCLUDE): Generator
372 374
     {
@@ -395,9 +397,10 @@  discard block
 block discarded – undo
395 397
     /**
396 398
      * Load node.
397 399
      *
398
-     * @param null|mixed $id
399
-     * @param null|mixed $path
400
+     * @param string|null $id
401
+     * @param string|null $path
400 402
      * @param null|mixed $class
403
+     * @param integer $deleted
401 404
      */
402 405
     public function getNode($id = null, $path = null, $class = null, bool $multiple = false, bool $allow_root = false, ?int $deleted = null): NodeInterface
403 406
     {
@@ -449,6 +452,8 @@  discard block
 block discarded – undo
449 452
 
450 453
     /**
451 454
      * Find nodes with custom filters.
455
+     * @param integer $offset
456
+     * @param integer $limit
452 457
      */
453 458
     public function findNodesByFilter(array $filter, ?int $offset = null, ?int $limit = null): Generator
454 459
     {
@@ -475,6 +480,8 @@  discard block
 block discarded – undo
475 480
 
476 481
     /**
477 482
      * Get custom filtered children.
483
+     * @param integer $offset
484
+     * @param integer $limit
478 485
      */
479 486
     public function findNodesByFilterUser(int $deleted, array $filter, ?int $offset = null, ?int $limit = null): Generator
480 487
     {
Please login to merge, or discard this patch.