@@ -336,7 +336,7 @@ |
||
336 | 336 | /** |
337 | 337 | * Returns the model that is belong to the queue message. |
338 | 338 | * |
339 | - * @return Issue|Issue\Comment|Note |
|
339 | + * @return \Illuminate\Database\Eloquent\Model |
|
340 | 340 | */ |
341 | 341 | protected function getModel() |
342 | 342 | { |
@@ -98,7 +98,7 @@ |
||
98 | 98 | /** |
99 | 99 | * Returns first status tag id. |
100 | 100 | * |
101 | - * @return int |
|
101 | + * @return string |
|
102 | 102 | */ |
103 | 103 | public function getFirstStatusTagId() |
104 | 104 | { |
@@ -111,7 +111,7 @@ |
||
111 | 111 | /** |
112 | 112 | * Return arguments and name from blade expression. |
113 | 113 | * |
114 | - * @param $expression |
|
114 | + * @param string $expression |
|
115 | 115 | * |
116 | 116 | * @return array |
117 | 117 | */ |
@@ -14,7 +14,6 @@ |
||
14 | 14 | use Illuminate\Support\Collection; |
15 | 15 | use Tinyissue\Model\Message\Queue; |
16 | 16 | use Tinyissue\Model\Project; |
17 | -use Tinyissue\Model\Project\Issue; |
|
18 | 17 | use Tinyissue\Services\SendMessagesAbstract; |
19 | 18 | |
20 | 19 | /** |
@@ -176,7 +176,17 @@ |
||
176 | 176 | ->orderBy('position'); |
177 | 177 | } |
178 | 178 | |
179 | + /** |
|
180 | + * @param string $related |
|
181 | + * @param string $foreignKey |
|
182 | + */ |
|
179 | 183 | abstract public function hasMany($related, $foreignKey = null, $localKey = null); |
180 | 184 | |
185 | + /** |
|
186 | + * @param string $related |
|
187 | + * @param string $table |
|
188 | + * @param string $foreignKey |
|
189 | + * @param string $otherKey |
|
190 | + */ |
|
181 | 191 | abstract public function belongsToMany($related, $table = null, $foreignKey = null, $otherKey = null, $relation = null); |
182 | 192 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * @param Project $project |
38 | 38 | * @param UserInterface $user |
39 | 39 | * |
40 | - * @return Project\Issue\Attachment |
|
40 | + * @return boolean |
|
41 | 41 | */ |
42 | 42 | public function upload(array $input, Project $project, UserInterface $user) |
43 | 43 | { |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @param int $userId |
34 | 34 | * |
35 | - * @return Project\Issue |
|
35 | + * @return boolean |
|
36 | 36 | */ |
37 | 37 | public function changeUpdatedBy($userId) |
38 | 38 | { |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * |
79 | 79 | * @param array $input |
80 | 80 | * |
81 | - * @return Project\Issue |
|
81 | + * @return boolean |
|
82 | 82 | */ |
83 | 83 | public function update(array $input = []) |
84 | 84 | { |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | * @param int $status |
243 | 243 | * @param UserInterface $user |
244 | 244 | * |
245 | - * @return Project\Issue |
|
245 | + * @return boolean |
|
246 | 246 | */ |
247 | 247 | public function changeStatus($status, UserInterface $user) |
248 | 248 | { |
@@ -59,7 +59,7 @@ |
||
59 | 59 | * |
60 | 60 | * @param string $body |
61 | 61 | * |
62 | - * @return Project\Note |
|
62 | + * @return boolean |
|
63 | 63 | */ |
64 | 64 | public function updateBody($body) |
65 | 65 | { |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @param array $data |
65 | 65 | * |
66 | - * @return mixed |
|
66 | + * @return boolean |
|
67 | 67 | */ |
68 | 68 | public function create(array $data) |
69 | 69 | { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * |
76 | 76 | * @param array $attributes |
77 | 77 | * |
78 | - * @return mixed |
|
78 | + * @return boolean |
|
79 | 79 | */ |
80 | 80 | public function update(array $attributes = []) |
81 | 81 | { |