Completed
Branch master (3adcdb)
by Raffael
08:09 queued 04:17
created
src/lib/Filesystem/Node/Collection.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
     /**
270 270
      * Get real id (reference).
271 271
      *
272
-     * @return ObjectId
272
+     * @return ObjectId|null
273 273
      */
274 274
     public function getRealId(): ?ObjectId
275 275
     {
@@ -298,7 +298,6 @@  discard block
 block discarded – undo
298 298
     /**
299 299
      * Fetch children items of this collection.
300 300
      *
301
-     * @param string $node
302 301
      * @param int    $deleted
303 302
      * @param array  $filter
304 303
      * @param mixed  $name
@@ -860,7 +859,7 @@  discard block
 block discarded – undo
860 859
      * @param string $name
861 860
      * @param string $data
862 861
      *
863
-     * @return File
862
+     * @return string
864 863
      */
865 864
     public function createFile($name, $data = null): String
866 865
     {
@@ -885,7 +884,6 @@  discard block
 block discarded – undo
885 884
      *
886 885
      * @param callable $callable
887 886
      * @param int      $deleted
888
-     * @param bool     $ignore_exception
889 887
      *
890 888
      * @return bool
891 889
      */
Please login to merge, or discard this patch.
src/lib/Server.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -209,6 +209,7 @@
 block discarded – undo
209 209
     /**
210 210
      * Filesystem factory.
211 211
      *
212
+     * @param User $user
212 213
      * @return Filesystem
213 214
      */
214 215
     public function getFilesystem(?User $user = null): Filesystem
Please login to merge, or discard this patch.
src/lib/Server/Group.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -265,6 +265,8 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/lib/Server/User.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -722,6 +722,8 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/app/Balloon.App.ClamAv/Scanner.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,6 @@  discard block
 block discarded – undo
73 73
     /**
74 74
      * Constructor.
75 75
      *
76
-     * @param Database        $db
77 76
      * @param LoggerInterface $logger
78 77
      */
79 78
     public function __construct(SocketFactory $factory, LoggerInterface $logger, ?Iterable $config = null)
@@ -131,7 +130,7 @@  discard block
 block discarded – undo
131 130
      *
132 131
      * @param File $file
133 132
      *
134
-     * @return array
133
+     * @return File
135 134
      */
136 135
     public function scan(File $file): array
137 136
     {
Please login to merge, or discard this patch.
src/app/Balloon.App.Cli/Console/Jobs.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,6 @@
 block discarded – undo
50 50
     /**
51 51
      * Constructor.
52 52
      *
53
-     * @param App             $app
54 53
      * @param Async           $async
55 54
      * @param LoggerInterface $logger
56 55
      * @param GetOpt          $getopt
Please login to merge, or discard this patch.
src/app/Balloon.App.Elasticsearch/Job.php 1 patch
Doc Comments   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -72,8 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Constructor.
74 74
      *
75
-     * @param Elasticsarch           $es
76
-     * @param Storage                $storage
75
+     * @param Elasticsearch           $es
77 76
      * @param Server                 $server
78 77
      * @param NodeAttributeDecorator $decorator
79 78
      * @param LoggerInterface        $logger
@@ -439,7 +438,6 @@  discard block
 block discarded – undo
439 438
     /**
440 439
      * Add or update blob.
441 440
      *
442
-     * @param File $node
443 441
      *
444 442
      * @return bool
445 443
      */
@@ -480,8 +478,6 @@  discard block
 block discarded – undo
480 478
      * Prepare references update.
481 479
      *
482 480
      * @param array $references
483
-     * @param array $new_references
484
-     * @param array $new_share_references
485 481
      *
486 482
      * @return array
487 483
      */
@@ -554,7 +550,6 @@  discard block
 block discarded – undo
554 550
     /**
555 551
      * Update blob.
556 552
      *
557
-     * @param File  $file
558 553
      * @param array $meta
559 554
      *
560 555
      * @return bool
Please login to merge, or discard this patch.