Completed
Pull Request — master (#141)
by Raffael
11:16
created
src/app/Balloon.App.Elasticsearch/Job.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * Constructor.
73 73
      *
74
-     * @param Elasticsarch $es
74
+     * @param Elasticsearch $es
75 75
      * @param iterable     $config
76 76
      */
77 77
     public function __construct(Elasticsearch $es, Server $server, NodeAttributeDecorator $decorator, LoggerInterface $logger, Iterable $config = null)
@@ -354,6 +354,7 @@  discard block
 block discarded – undo
354 354
 
355 355
     /**
356 356
      * Get stored file.
357
+     * @param string $hash
357 358
      */
358 359
     protected function getFileByHash(?string $hash): ?array
359 360
     {
Please login to merge, or discard this patch.
src/lib/Filesystem/Node/Collection.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
     /**
258 258
      * Get real id (reference).
259 259
      *
260
-     * @return ObjectId
260
+     * @return ObjectId|null
261 261
      */
262 262
     public function getRealId(): ?ObjectId
263 263
     {
@@ -639,6 +639,7 @@  discard block
 block discarded – undo
639 639
 
640 640
     /**
641 641
      * Create new file as a child from this collection.
642
+     * @param string $name
642 643
      */
643 644
     public function addFile($name, ?ObjectId $session = null, array $attributes = [], int $conflict = NodeInterface::CONFLICT_NOACTION, bool $clone = false): File
644 645
     {
Please login to merge, or discard this patch.
src/lib/Filesystem/Storage.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -147,6 +147,7 @@
 block discarded – undo
147 147
 
148 148
     /**
149 149
      * Store file.
150
+     * @param string $adapter
150 151
      */
151 152
     public function storeFile(File $file, ObjectId $session, ?string &$adapter = null)
152 153
     {
Please login to merge, or discard this patch.