@@ -18,6 +18,13 @@ discard block |
||
18 | 18 | |
19 | 19 | interface TaskSpecificationFactory |
20 | 20 | { |
21 | + /** |
|
22 | + * @param null|string $title |
|
23 | + * @param TaskPriority $priority |
|
24 | + * @param TaskProgress $progress |
|
25 | + * |
|
26 | + * @return \Kreta\TaskManager\Infrastructure\Persistence\Doctrine\ORM\Project\Task\DoctrineORMFilterableSpecification |
|
27 | + */ |
|
21 | 28 | public function buildFilterableSpecification( |
22 | 29 | array $projectIds, |
23 | 30 | ?string $title, |
@@ -30,5 +37,8 @@ discard block |
||
30 | 37 | int $limit = -1 |
31 | 38 | ); |
32 | 39 | |
40 | + /** |
|
41 | + * @return \Kreta\TaskManager\Infrastructure\Persistence\Doctrine\ORM\Project\Task\DoctrineORMFilterableSpecification |
|
42 | + */ |
|
33 | 43 | public function buildByProjectSpecification(ProjectId $projectId); |
34 | 44 | } |
@@ -22,6 +22,9 @@ |
||
22 | 22 | private $parentId; |
23 | 23 | private $occurredOn; |
24 | 24 | |
25 | + /** |
|
26 | + * @param null|TaskId $parentId |
|
27 | + */ |
|
25 | 28 | public function __construct(TaskId $id, ?TaskId $parentId) |
26 | 29 | { |
27 | 30 | $this->id = $id; |
@@ -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; |
@@ -22,5 +22,8 @@ |
||
22 | 22 | |
23 | 23 | public function usersOfIds(array $userIds) : array; |
24 | 24 | |
25 | + /** |
|
26 | + * @param string $search |
|
27 | + */ |
|
25 | 28 | public function usersOfSearchString($search, array $excludedIds = []) : array; |
26 | 29 | } |
@@ -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 | } |