@@ -20,8 +20,14 @@ |
||
20 | 20 | |
21 | 21 | public function query($specification) : array; |
22 | 22 | |
23 | + /** |
|
24 | + * @return void |
|
25 | + */ |
|
23 | 26 | public function persist(Task $task) : void; |
24 | 27 | |
28 | + /** |
|
29 | + * @return void |
|
30 | + */ |
|
25 | 31 | public function remove(Task $task) : void; |
26 | 32 | |
27 | 33 | public function count($specification) : int; |
@@ -75,6 +75,11 @@ |
||
75 | 75 | } |
76 | 76 | } |
77 | 77 | |
78 | + /** |
|
79 | + * @param integer $index |
|
80 | + * |
|
81 | + * @return string |
|
82 | + */ |
|
78 | 83 | private function taskPriority($index) |
79 | 84 | { |
80 | 85 | $priorityIndex = $index % 2 > 3 ? 0 : 2 - $index % 3; |
@@ -150,6 +150,9 @@ |
||
150 | 150 | return $this->owners; |
151 | 151 | } |
152 | 152 | |
153 | + /** |
|
154 | + * @return Member |
|
155 | + */ |
|
153 | 156 | public function owner(UserId $userId) : ?Owner |
154 | 157 | { |
155 | 158 | foreach ($this->owners() as $owner) { |
@@ -18,5 +18,8 @@ |
||
18 | 18 | { |
19 | 19 | public function get(UserId $id) : User; |
20 | 20 | |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function save(User $user) : void; |
22 | 25 | } |
@@ -49,6 +49,9 @@ |
||
49 | 49 | $this->tokenStorage->getToken()->setUser(new User($this->userId($request))); |
50 | 50 | } |
51 | 51 | |
52 | + /** |
|
53 | + * @return string |
|
54 | + */ |
|
52 | 55 | private function userId(Request $request) : ?string |
53 | 56 | { |
54 | 57 | if ($request->headers->has('Authorization')) { |
@@ -18,5 +18,8 @@ |
||
18 | 18 | { |
19 | 19 | public function get(NotificationId $id) : Notification; |
20 | 20 | |
21 | + /** |
|
22 | + * @return void |
|
23 | + */ |
|
21 | 24 | public function save(Notification $notification) : void; |
22 | 25 | } |
@@ -16,5 +16,8 @@ |
||
16 | 16 | |
17 | 17 | interface NotificationSpecificationFactory |
18 | 18 | { |
19 | + /** |
|
20 | + * @return \Kreta\Notifier\Infrastructure\Domain\ReadModel\Inbox\Notification\ElasticsearchNotificationsOfUserSpecification |
|
21 | + */ |
|
19 | 22 | public function createNotificationsOfUser(string $userId, int $from = 0, int $size = -1, string $status = null); |
20 | 23 | } |
@@ -18,9 +18,15 @@ |
||
18 | 18 | |
19 | 19 | interface NotificationView |
20 | 20 | { |
21 | + /** |
|
22 | + * @return Notification |
|
23 | + */ |
|
21 | 24 | public function notificationOfId(NotificationId $notificationId) : ?Notification; |
22 | 25 | |
23 | 26 | public function search($searchSpecification) : array; |
24 | 27 | |
28 | + /** |
|
29 | + * @return void |
|
30 | + */ |
|
25 | 31 | public function save(Notification $notification) : void; |
26 | 32 | } |
@@ -20,5 +20,8 @@ |
||
20 | 20 | { |
21 | 21 | public function userOfId(UserId $userId) : ?User; |
22 | 22 | |
23 | + /** |
|
24 | + * @return void |
|
25 | + */ |
|
23 | 26 | public function save(User $user) : void; |
24 | 27 | } |