Completed
Branch develop-3.0 (979139)
by Mohamed
04:30 queued 01:20
created
app/Providers/BladeServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
app/Repository/Project/Fetcher.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     /**
64 64
      * Returns all users that are not assigned in the current project.
65 65
      *
66
-     * @return array
66
+     * @return \Illuminate\Support\Collection
67 67
      */
68 68
     public function getNotMembers()
69 69
     {
Please login to merge, or discard this patch.
app/Repository/RepositoryUpdater.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      *
64 64
      * @param array $data
65 65
      *
66
-     * @return mixed
66
+     * @return Model
67 67
      */
68 68
     public function create(array $data)
69 69
     {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      *
78 78
      * @param array $attributes
79 79
      *
80
-     * @return mixed
80
+     * @return boolean
81 81
      */
82 82
     public function update(array $attributes = [])
83 83
     {
Please login to merge, or discard this patch.
app/Repository/Project/Updater.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @param int $userId
48 48
      * @param int $roleId
49 49
      *
50
-     * @return Project\User
50
+     * @return boolean
51 51
      */
52 52
     public function assignUser($userId, $roleId = 0)
53 53
     {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      *
81 81
      * @param array $input
82 82
      *
83
-     * @return $this
83
+     * @return Project
84 84
      */
85 85
     public function create(array $input = [])
86 86
     {
Please login to merge, or discard this patch.
app/Repository/Project/Issue/Attachment/Updater.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      * @param Project $project
43 43
      * @param User    $user
44 44
      *
45
-     * @return Project\Issue\Attachment
45
+     * @return boolean
46 46
      */
47 47
     public function upload(array $input, Project $project, User $user)
48 48
     {
@@ -102,10 +102,10 @@  discard block
 block discarded – undo
102 102
      * Update upload token for issue attachment.
103 103
      *
104 104
      * @param string  $token
105
-     * @param int|User $uploadBy
105
+     * @param integer $uploadBy
106 106
      * @param int     $issueId
107 107
      *
108
-     * @return Project\Issue\Attachment
108
+     * @return boolean
109 109
      */
110 110
     public function updateIssueToken($token, $uploadBy, $issueId)
111 111
     {
@@ -116,11 +116,11 @@  discard block
 block discarded – undo
116 116
      * Update upload token for comment attachment.
117 117
      *
118 118
      * @param string   $token
119
-     * @param int|User $uploadBy
119
+     * @param integer $uploadBy
120 120
      * @param int      $issueId
121 121
      * @param int      $commentId
122 122
      *
123
-     * @return Project\Issue\Attachment
123
+     * @return boolean|null
124 124
      */
125 125
     public function updateCommentToken($token, $uploadBy, $issueId, $commentId)
126 126
     {
Please login to merge, or discard this patch.
app/Form/UserMessagesSettings.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
 
83 83
     /**
84 84
      * @param ProjectModel $project
85
-     * @param array        $messages
85
+     * @param Collection        $messages
86 86
      *
87 87
      * @return array
88 88
      */
Please login to merge, or discard this patch.
app/Extensions/Html/FormBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
     }
101 101
 
102 102
     /**
103
-     * @param       $former
103
+     * @param       Former\Form\Form $former
104 104
      * @param array $attributes
105 105
      * @param array $rules
106 106
      *
Please login to merge, or discard this patch.
app/Repository/Project/Issue/Updater.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     /**
35 35
      * Set the issue is updated by a user.
36 36
      *
37
-     * @return Project\Issue
37
+     * @return boolean
38 38
      */
39 39
     public function changeUpdatedBy()
40 40
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Reassign the issue to a new user.
49 49
      *
50
-     * @param int|User $assignTo
50
+     * @param integer $assignTo
51 51
      * @param User     $user
52 52
      *
53 53
      * @return Project\Issue
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      *
97 97
      * @param array $input
98 98
      *
99
-     * @return Project\Issue
99
+     * @return boolean
100 100
      */
101 101
     public function update(array $input = [])
102 102
     {
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
      * @param int  $status
244 244
      * @param User $user
245 245
      *
246
-     * @return Project\Issue
246
+     * @return boolean
247 247
      */
248 248
     public function changeStatus($status, User $user)
249 249
     {
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
      * @param Project\Issue $issue
463 463
      * @param User          $changeBy
464 464
      *
465
-     * @return void
465
+     * @return null|boolean
466 466
      */
467 467
     public function queueAdd(Project\Issue $issue, User $changeBy)
468 468
     {
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
      * @param array         $removedTags
501 501
      * @param User          $changeBy
502 502
      *
503
-     * @return mixed
503
+     * @return boolean
504 504
      */
505 505
     public function queueChangeTags(Project\Issue $issue, array $addedTags, array $removedTags, User $changeBy)
506 506
     {
Please login to merge, or discard this patch.