Completed
Push — master ( dbbd2c...38f0e9 )
by Phecho
60:32 queued 53:51
created
app/Http/Middleware/AppIsInstalled.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
      * We're verifying that Gitamin is correctly installed. If it is, then we're
24 24
      * redirecting the user to the dashboard so they can use Gitamin.
25 25
      *
26
-     * @param \Illuminate\Routing\Route $route
27 26
      * @param \Closure                  $next
28 27
      *
29 28
      * @return mixed
Please login to merge, or discard this patch.
app/Http/Middleware/Timezone.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
      *
21 21
      * @param \Illuminate\Http\Request $request
22 22
      * @param \Closure                 $next
23
-     * @param string                   $type
24 23
      *
25 24
      * @return mixed
26 25
      */
Please login to merge, or discard this patch.
app/Commands/Subscriber/UnsubscribeSubscriberCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     /**
26 26
      * Create a verify subscriber command instance.
27 27
      *
28
-     * @param string $subscriber
28
+     * @param Subscriber $subscriber
29 29
      *
30 30
      * @return void
31 31
      */
Please login to merge, or discard this patch.
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/ProjectNamespace/RemoveProjectNamespaceCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
     /**
26 26
      * Create a new remove project team command instance.
27 27
      *
28
-     * @param \Gitamin\Models\ProjectTeam $team
29 28
      *
30 29
      * @return void
31 30
      */
Please login to merge, or discard this patch.
app/Commands/ProjectNamespace/UpdateProjectNamespaceCommand.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -52,10 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Create a add project team command instance.
54 54
      *
55
-     * @param \Gitamin\Models\ProjectTeam $team
56 55
      * @param string                      $name
57
-     * @param string                      $slug
58
-     * @param int                         $order
59 56
      *
60 57
      * @return void
61 58
      */
Please login to merge, or discard this patch.
Handlers/Commands/ProjectNamespace/RemoveProjectNamespaceCommandHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * Handle the remove project team command.
21 21
      *
22
-     * @param \Gitamin\Commands\ProjectTeam\RemoveProjectTeamCommand $command
22
+     * @param RemoveProjectNamespaceCommand $command
23 23
      *
24 24
      * @return void
25 25
      */
Please login to merge, or discard this patch.
app/Commands/Project/UpdateProjectCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,6 @@
 block discarded – undo
86 86
      * @param string                  $description
87 87
      * @param int                     $visibility_level
88 88
      * @param string                  $path
89
-     * @param int                     $creator_id
90 89
      * @param int                     $namespace_id
91 90
      *
92 91
      * @return void
Please login to merge, or discard this patch.
app/Http/Controllers/FeedController.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * Generates an Atom feed of all issues.
54 54
      *
55
-     * @param \Gitamin\Models\ProjectTeam|null $namespace
55
+     * @param null|ProjectNamespace $namespace
56 56
      *
57 57
      * @return \Illuminate\Http\Response
58 58
      */
@@ -66,7 +66,6 @@  discard block
 block discarded – undo
66 66
     /**
67 67
      * Generates an Rss feed of all issues.
68 68
      *
69
-     * @param \Gitamin\Models\ProjectTeam|null $group
70 69
      *
71 70
      * @return \Illuminate\Http\Response
72 71
      */
@@ -81,7 +80,7 @@  discard block
 block discarded – undo
81 80
     /**
82 81
      * Generates an Atom feed of all issues.
83 82
      *
84
-     * @param \Gitamin\Models\ProjectTeam|null $namespace
83
+     * @param null|ProjectNamespace $namespace
85 84
      *
86 85
      * @return \Illuminate\Http\Response
87 86
      */
Please login to merge, or discard this patch.