Completed
Branch develop-3.0 (efe4ef)
by Mohamed
02:53
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/Updater.php 1 patch
Doc Comments   +8 added lines, -8 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
     {
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
      * @param Project\Issue $issue
405 405
      * @param User          $changeBy
406 406
      *
407
-     * @return void
407
+     * @return null|boolean
408 408
      */
409 409
     public function queueUpdate(Project\Issue $issue, User $changeBy)
410 410
     {
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
      * @param Project\Issue $issue
445 445
      * @param User          $changeBy
446 446
      *
447
-     * @return void
447
+     * @return null|boolean
448 448
      */
449 449
     public function queueAdd(Project\Issue $issue, User $changeBy)
450 450
     {
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
      * @param Project\Issue $issue
458 458
      * @param User          $changeBy
459 459
      *
460
-     * @return void
460
+     * @return null|boolean
461 461
      */
462 462
     public function queueAssign(Project\Issue $issue, User $changeBy)
463 463
     {
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
      * @param array         $removedTags
476 476
      * @param User          $changeBy
477 477
      *
478
-     * @return mixed
478
+     * @return boolean
479 479
      */
480 480
     public function queueChangeTags(Project\Issue $issue, array $addedTags, array $removedTags, User $changeBy)
481 481
     {
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.