Completed
Pull Request — master (#106)
by Phecho
03:20
created
app/Http/Controllers/Api/ProjectController.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @param \Symfony\Component\HttpFoundation\Request $request
32 32
      *
33
-     * @return \Illuminate\Http\JsonResponse
33
+     * @return \Illuminate\Http\Response
34 34
      */
35 35
     public function getTeams(Request $request)
36 36
     {
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      *
45 45
      * @param \Gitamin\Models\ProjectTeam $team
46 46
      *
47
-     * @return \Illuminate\Http\JsonResponse
47
+     * @return \Illuminate\Http\Response
48 48
      */
49 49
     public function getTeam(ProjectTeam $team)
50 50
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Create a new project team.
56 56
      *
57
-     * @return \Illuminate\Http\JsonResponse
57
+     * @return \Illuminate\Http\Response
58 58
      */
59 59
     public function postTeams()
60 60
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      *
77 77
      * @param \Gitamin\Models\ProjectTeam $team
78 78
      *
79
-     * @return \Illuminate\Http\JsonResponse
79
+     * @return \Illuminate\Http\Response
80 80
      */
81 81
     public function putTeam(ProjectTeam $team)
82 82
     {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      *
100 100
      * @param \Gitamin\Models\ProjectTeam $team
101 101
      *
102
-     * @return \Illuminate\Http\JsonResponse
102
+     * @return \Illuminate\Http\Response
103 103
      */
104 104
     public function deleteTeam(ProjectTeam $team)
105 105
     {
Please login to merge, or discard this patch.
app/Commands/Owner/UpdateOwnerCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     /**
66 66
      * Create an add project owner command instance.
67 67
      *
68
-     * @param \Gitamin\Models\ProjectNamepsace $owner
68
+     * @param Owner $owner
69 69
      * @param string                           $name
70 70
      * @param string                           $path
71 71
      * @param int                              $user_id
Please login to merge, or discard this patch.
app/Commands/Project/AddProjectCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,6 @@
 block discarded – undo
78 78
      * @param string $path
79 79
      * @param int    $creator_id
80 80
      * @param int    $owner_id
81
-     * @param bool   $issues_enabled
82 81
      *
83 82
      * @return void
84 83
      */
Please login to merge, or discard this patch.
app/Http/Controllers/Api/OwnerController.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @param \Symfony\Component\HttpFoundation\Request $request
32 32
      *
33
-     * @return \Illuminate\Http\JsonResponse
33
+     * @return \Illuminate\Http\Response
34 34
      */
35 35
     public function getTeams(Request $request)
36 36
     {
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      *
45 45
      * @param \Gitamin\Models\ProjectTeam $team
46 46
      *
47
-     * @return \Illuminate\Http\JsonResponse
47
+     * @return \Illuminate\Http\Response
48 48
      */
49 49
     public function getTeam(ProjectTeam $team)
50 50
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Create a new project team.
56 56
      *
57
-     * @return \Illuminate\Http\JsonResponse
57
+     * @return \Illuminate\Http\Response
58 58
      */
59 59
     public function postTeams()
60 60
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      *
77 77
      * @param \Gitamin\Models\ProjectTeam $team
78 78
      *
79
-     * @return \Illuminate\Http\JsonResponse
79
+     * @return \Illuminate\Http\Response
80 80
      */
81 81
     public function putTeam(ProjectTeam $team)
82 82
     {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      *
100 100
      * @param \Gitamin\Models\ProjectTeam $team
101 101
      *
102
-     * @return \Illuminate\Http\JsonResponse
102
+     * @return \Illuminate\Http\Response
103 103
      */
104 104
     public function deleteTeam(ProjectTeam $team)
105 105
     {
Please login to merge, or discard this patch.
app/Http/Controllers/FeedController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     /**
72 72
      * Generates a feed of all issues.
73 73
      *
74
-     * @param \Gitamin\Models\Owner|null $owner
74
+     * @param Owner $owner
75 75
      * @param bool                       $isRss
76 76
      *
77 77
      * @return \Illuminate\Http\Response
Please login to merge, or discard this patch.
app/Http/Controllers/GroupsController.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -137,7 +137,6 @@  discard block
 block discarded – undo
137 137
     /**
138 138
      * Shows the edit project namespace view.
139 139
      *
140
-     * @param \Gitamin\Models\Owner $namespace
141 140
      *
142 141
      * @return \Illuminate\View\View
143 142
      */
@@ -153,7 +152,6 @@  discard block
 block discarded – undo
153 152
     /**
154 153
      * Updates a project namespace.
155 154
      *
156
-     * @param \Gitamin\Models\Owner $namespace
157 155
      *
158 156
      * @return \Illuminate\Http\RedirectResponse
159 157
      */
Please login to merge, or discard this patch.
app/Http/Controllers/ProjectsController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,6 @@
 block discarded – undo
87 87
     /**
88 88
      * Display the specified resource.
89 89
      *
90
-     * @param string $owner
91 90
      * @param string $project_path
92 91
      *
93 92
      * @return \Illuminate\Http\Response
Please login to merge, or discard this patch.
app/Http/Controllers/Api/CommentController.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * @param \Symfony\Component\HttpFoundation\Request $request
33 33
      * @param \Illuminate\Contracts\Auth\Guard          $auth
34 34
      *
35
-     * @return \Illuminate\Http\JsonResponse
35
+     * @return \Illuminate\Http\Response
36 36
      */
37 37
     public function getComments(Request $request, Guard $auth)
38 38
     {
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      *
47 47
      * @param \Gitamin\Models\Comment $comment
48 48
      *
49
-     * @return \Illuminate\Http\JsonResponse
49
+     * @return \Illuminate\Http\Response
50 50
      */
51 51
     public function getComment(Comment $comment)
52 52
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @param \Illuminate\Contracts\Auth\Guard $auth
60 60
      *
61
-     * @return \Illuminate\Http\JsonResponse
61
+     * @return \Illuminate\Http\Response
62 62
      */
63 63
     public function postComments(Guard $auth)
64 64
     {
@@ -80,9 +80,9 @@  discard block
 block discarded – undo
80 80
     /**
81 81
      * Update an existing comment.
82 82
      *
83
-     * @param \Gitamin\Models\Inicdent $comment
83
+     * @param Comment $comment
84 84
      *
85
-     * @return \Illuminate\Http\JsonResponse
85
+     * @return \Illuminate\Http\Response
86 86
      */
87 87
     public function putComment(Comment $comment)
88 88
     {
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      *
104 104
      * @param \Gitamin\Models\Comment $comment
105 105
      *
106
-     * @return \Illuminate\Http\JsonResponse
106
+     * @return \Illuminate\Http\Response
107 107
      */
108 108
     public function deleteComment(Comment $comment)
109 109
     {
Please login to merge, or discard this patch.
app/Handlers/Events/Issue/SendIssueEmailNotificationHandler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * Create a new send issue email notification handler.
38 38
      *
39
-     * @param \Illuminate\Contracts\Mail\Mailer $mailer
39
+     * @param MailQueue $mailer
40 40
      * @param \Gitamin\Models\Subscriber        $subscriber
41 41
      *
42 42
      * @return void
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * Handle the event.
52 52
      *
53
-     * @param \Gitamin\Events\Issue\IssueHasAddedEvent $event
53
+     * @param IssueWasAddedEvent $event
54 54
      *
55 55
      * @return void
56 56
      */
Please login to merge, or discard this patch.