@@ -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) { |