Completed
Branch develop-3.0 (63d375)
by Mohamed
02:58
created
app/Repository/Project/Issue/Updater.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      *
37 37
      * @param int $userId
38 38
      *
39
-     * @return Project\Issue
39
+     * @return boolean
40 40
      */
41 41
     public function changeUpdatedBy($userId)
42 42
     {
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * Reassign the issue to a new user.
51 51
      *
52
-     * @param int|User $assignTo
52
+     * @param integer $assignTo
53 53
      * @param User     $user
54 54
      *
55 55
      * @return Project\Issue
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      *
83 83
      * @param array $input
84 84
      *
85
-     * @return Project\Issue
85
+     * @return boolean
86 86
      */
87 87
     public function update(array $input = [])
88 88
     {
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
      * @param int  $status
247 247
      * @param User $user
248 248
      *
249
-     * @return Project\Issue
249
+     * @return boolean
250 250
      */
251 251
     public function changeStatus($status, User $user)
252 252
     {
Please login to merge, or discard this patch.
app/Repository/Project/Issue/Comment/MessageQueuer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      * @param CommentModel $comment
24 24
      * @param Model\User   $changeBy
25 25
      *
26
-     * @return void
26
+     * @return null|boolean
27 27
      */
28 28
     public function queueAdd(CommentModel $comment, Model\User $changeBy)
29 29
     {
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      * @param CommentModel $comment
42 42
      * @param Model\User   $changeBy
43 43
      *
44
-     * @return void
44
+     * @return null|boolean
45 45
      */
46 46
     public function queueUpdate(CommentModel $comment, Model\User $changeBy)
47 47
     {
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      * @param CommentModel $comment
60 60
      * @param Model\User   $changeBy
61 61
      *
62
-     * @return void
62
+     * @return null|boolean
63 63
      */
64 64
     public function queueDelete(CommentModel $comment, Model\User $changeBy)
65 65
     {
Please login to merge, or discard this patch.