@@ -93,6 +93,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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, array $query = [], ?int $offset = null, ?int $limit = null, ?int &$total = null): iterable |
| 211 | 215 | { |
@@ -288,6 +292,7 @@ discard block |
||
| 288 | 292 | |
| 289 | 293 | /** |
| 290 | 294 | * Get subscription. |
| 295 | + * @return NodeInterface |
|
| 291 | 296 | */ |
| 292 | 297 | public function getSubscription(NodeInterface $node, User $user): ?array |
| 293 | 298 | { |
@@ -98,6 +98,7 @@ discard block |
||
| 98 | 98 | |
| 99 | 99 | /** |
| 100 | 100 | * Build a single dimension array with all nodes. |
| 101 | + * @param integer[] $cursor |
|
| 101 | 102 | */ |
| 102 | 103 | public function buildFeedFromCurrentState(?array $cursor = null, int $limit = 100, ?NodeInterface $node = null): array |
| 103 | 104 | { |
@@ -220,6 +221,7 @@ discard block |
||
| 220 | 221 | |
| 221 | 222 | /** |
| 222 | 223 | * Get delta feed with changes and cursor. |
| 224 | + * @param NodeInterface $node |
|
| 223 | 225 | */ |
| 224 | 226 | public function getDeltaFeed(?string $cursor = null, int $limit = 250, ?NodeInterface $node = null): array |
| 225 | 227 | { |
@@ -327,6 +329,7 @@ discard block |
||
| 327 | 329 | |
| 328 | 330 | /** |
| 329 | 331 | * Get event log. |
| 332 | + * @param NodeInterface $node |
|
| 330 | 333 | */ |
| 331 | 334 | public function getEventLog(array $query = [], int $limit = 100, int $skip = 0, ?NodeInterface $node = null, ?int &$total = null): iterable |
| 332 | 335 | { |
@@ -584,6 +587,7 @@ discard block |
||
| 584 | 587 | |
| 585 | 588 | /** |
| 586 | 589 | * Get children with custom filter. |
| 590 | + * @param integer $limit |
|
| 587 | 591 | */ |
| 588 | 592 | protected function findNodeAttributesWithCustomFilter( |
| 589 | 593 | ?array $filter = null, |
@@ -1113,6 +1113,8 @@ |
||
| 1113 | 1113 | |
| 1114 | 1114 | /** |
| 1115 | 1115 | * Duplicate name with a uniqid within name. |
| 1116 | + * @param string $name |
|
| 1117 | + * @param string $class |
|
| 1116 | 1118 | */ |
| 1117 | 1119 | public function getDuplicateName(?string $name = null, ?string $class = null): string |
| 1118 | 1120 | { |
@@ -62,6 +62,8 @@ |
||
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * Search. |
| 65 | + * @param integer $skip |
|
| 66 | + * @param integer $limit |
|
| 65 | 67 | */ |
| 66 | 68 | public function search(array $query, int $deleted = NodeInterface::DELETED_INCLUDE, ?int $skip = null, ?int $limit = null, ?int &$total = null): Generator |
| 67 | 69 | { |
@@ -236,6 +236,7 @@ discard block |
||
| 236 | 236 | |
| 237 | 237 | /** |
| 238 | 238 | * Find one. |
| 239 | + * @param Collection $parent |
|
| 239 | 240 | */ |
| 240 | 241 | public function findOne(array $filter, int $deleted = NodeInterface::DELETED_INCLUDE, ?Collection $parent = null): NodeInterface |
| 241 | 242 | { |
@@ -433,6 +434,8 @@ discard block |
||
| 433 | 434 | * Get deleted nodes. |
| 434 | 435 | * |
| 435 | 436 | * Note this query excludes deleted nodes which have a deleted parent |
| 437 | + * @param integer $offset |
|
| 438 | + * @param integer $limit |
|
| 436 | 439 | */ |
| 437 | 440 | public function getTrash(array $query = [], ?int $offset = null, ?int $limit = null): Generator |
| 438 | 441 | { |
@@ -572,6 +575,8 @@ discard block |
||
| 572 | 575 | * Get custom filtered children. |
| 573 | 576 | * |
| 574 | 577 | * @deprecated |
| 578 | + * @param integer $offset |
|
| 579 | + * @param integer $limit |
|
| 575 | 580 | */ |
| 576 | 581 | public function findNodesByFilterUser(int $deleted, array $filter, ?int $offset = null, ?int $limit = null): Generator |
| 577 | 582 | { |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | /** |
| 86 | 86 | * Add decorator. |
| 87 | 87 | * |
| 88 | - * @return AttributeDecorator |
|
| 88 | + * @return NodeDecorator |
|
| 89 | 89 | */ |
| 90 | 90 | public function addDecorator(string $attribute, Closure $decorator): self |
| 91 | 91 | { |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | /** |
| 73 | 73 | * Add decorator. |
| 74 | 74 | * |
| 75 | - * @return AttributeDecorator |
|
| 75 | + * @return RoleDecorator |
|
| 76 | 76 | */ |
| 77 | 77 | public function addDecorator(string $attribute, Closure $decorator): self |
| 78 | 78 | { |