Completed
Push — master ( afaf42...8ac772 )
by Raffael
20:10 queued 16:21
created
src/lib/Filesystem/Node/AbstractNode.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -1044,6 +1044,7 @@
 block discarded – undo
1044 1044
 
1045 1045
     /**
1046 1046
      * Duplicate name with a uniqid within name.
1047
+     * @param string $name
1047 1048
      */
1048 1049
     protected function getDuplicateName(?string $name = null, ?string $class = null): string
1049 1050
     {
Please login to merge, or discard this patch.
src/app/Balloon.App.Api/v1/File.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/app/Balloon.App.Notification/Notifier.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -93,6 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     /**
95 95
      * Send notification.
96
+     * @param User $sender
96 97
      */
97 98
     public function notify(Iterable $receiver, ?User $sender, MessageInterface $message): bool
98 99
     {
@@ -180,6 +181,7 @@  discard block
 block discarded – undo
180 181
 
181 182
     /**
182 183
      * Add notification.
184
+     * @param User $sender
183 185
      */
184 186
     public function postNotification(User $receiver, ?User $sender, MessageInterface $message): ObjectId
185 187
     {
@@ -206,6 +208,8 @@  discard block
 block discarded – undo
206 208
 
207 209
     /**
208 210
      * Get notifications.
211
+     * @param integer $offset
212
+     * @param integer $limit
209 213
      */
210 214
     public function getNotifications(User $user, ?int $offset = null, ?int $limit = null, ?int &$total = null): Iterable
211 215
     {
@@ -278,6 +282,7 @@  discard block
 block discarded – undo
278 282
 
279 283
     /**
280 284
      * Get subscription.
285
+     * @return NodeInterface
281 286
      */
282 287
     public function getSubscription(NodeInterface $node, User $user): ?array
283 288
     {
Please login to merge, or discard this patch.
src/lib/Filesystem.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
      * Load nodes by id.
290 290
      *
291 291
      * @param string $class   Force check node type
292
-     * @param bool   $deleted
292
+     * @param integer   $deleted
293 293
      */
294 294
     public function findNodesById(array $id = [], ?string $class = null, int $deleted = NodeInterface::DELETED_INCLUDE): Generator
295 295
     {
@@ -468,6 +468,8 @@  discard block
 block discarded – undo
468 468
 
469 469
     /**
470 470
      * Find nodes with custom filters.
471
+     * @param integer $offset
472
+     * @param integer $limit
471 473
      */
472 474
     public function findNodesByFilter(array $filter, ?int $offset = null, ?int $limit = null): Generator
473 475
     {
@@ -494,6 +496,8 @@  discard block
 block discarded – undo
494 496
 
495 497
     /**
496 498
      * Get custom filtered children.
499
+     * @param integer $offset
500
+     * @param integer $limit
497 501
      */
498 502
     public function findNodesByFilterUser(int $deleted, array $filter, ?int $offset = null, ?int $limit = null): Generator
499 503
     {
Please login to merge, or discard this patch.
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/lib/Filesystem/Node/Collection.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Balloon\Filesystem\Exception;
18 18
 use Balloon\Filesystem\Storage\Adapter\AdapterInterface as StorageAdapterInterface;
19 19
 use Balloon\Hook;
20
-use Balloon\Server\User;
21 20
 use Generator;
22 21
 use MimeType\MimeType;
23 22
 use MongoDB\BSON\ObjectId;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
         $this->storage = $this->_parent->getStorage()->deleteCollection($this);
363 363
 
364 364
         if (!$this->isReference() && !$this->isMounted() && !$this->isFiltered()) {
365
-            $this->doRecursiveAction(function ($node) use ($recursion) {
365
+            $this->doRecursiveAction(function($node) use ($recursion) {
366 366
                 $node->delete(false, $recursion, false);
367 367
             }, NodeInterface::DELETED_EXCLUDE);
368 368
         }
@@ -902,7 +902,7 @@  discard block
 block discarded – undo
902 902
     protected function _forceDelete(?string $recursion = null, bool $recursion_first = true): bool
903 903
     {
904 904
         if (!$this->isReference() && !$this->isMounted()) {
905
-            $this->doRecursiveAction(function ($node) use ($recursion) {
905
+            $this->doRecursiveAction(function($node) use ($recursion) {
906 906
                 $node->delete(true, $recursion, false);
907 907
             }, NodeInterface::DELETED_INCLUDE);
908 908
         }
Please login to merge, or discard this 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/app/Balloon.App.Notification/AttributeDecorator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             'message' => (string) $message['body'],
99 99
             'subject' => (string) $message['subject'],
100 100
             'locale' => (string) $message['locale'],
101
-            'sender' => function ($message) use ($server, $role_decorator) {
101
+            'sender' => function($message) use ($server, $role_decorator) {
102 102
                 if (!isset($message['sender'])) {
103 103
                     return null;
104 104
                 }
@@ -109,10 +109,10 @@  discard block
 block discarded – undo
109 109
                     return null;
110 110
                 }
111 111
             },
112
-            'created' => function ($message) {
112
+            'created' => function($message) {
113 113
                 return (new DateTime())->setTimestamp($message['_id']->getTimestamp())->format('c');
114 114
             },
115
-            'node' => function ($message) use ($node_decorator, $fs) {
115
+            'node' => function($message) use ($node_decorator, $fs) {
116 116
                 if (isset($message['node'])) {
117 117
                     try {
118 118
                         return $node_decorator->decorate($fs->findNodeById($message['node']), ['id', 'name', '_links']);
Please login to merge, or discard this patch.
src/app/Balloon.App.Notification/TemplateHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
      */
219 219
     protected function decorate(string $template, array $context): string
220 220
     {
221
-        return preg_replace_callback('/\{([^}\.]*)\}/', function ($match) use ($context) {
221
+        return preg_replace_callback('/\{([^}\.]*)\}/', function($match) use ($context) {
222 222
             $key = $match[1];
223 223
 
224 224
             if (isset($context[$key])) {
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      */
233 233
     protected function decorateResource(string $template, $resource, string $prefix, $decorator): string
234 234
     {
235
-        return preg_replace_callback('/(\{'.$prefix.'\.(([a-z]\.*)+)\})/', function ($match) use ($resource, $decorator) {
235
+        return preg_replace_callback('/(\{'.$prefix.'\.(([a-z]\.*)+)\})/', function($match) use ($resource, $decorator) {
236 236
             $key = explode('.', $match[2]);
237 237
             $key = array_shift($key);
238 238
             $attrs = $decorator->decorate($resource, [$key]);
Please login to merge, or discard this patch.
src/app/Balloon.App.Office/Api/v2/Documents.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
         $tpl = new Template($type);
162 162
 
163 163
         $attributes = compact('readonly', 'meta');
164
-        $attributes = array_filter($attributes, function ($attribute) {return !is_null($attribute); });
164
+        $attributes = array_filter($attributes, function($attribute) {return !is_null($attribute); });
165 165
 
166 166
         $stream = $tpl->get();
167 167
         $storage = $parent->getStorage();
Please login to merge, or discard this patch.