Completed
Push — master ( a062c5...760426 )
by Phecho
22:04 queued 09:47
created
app/Http/Controllers/Dashboard/TeamController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -146,7 +146,6 @@  discard block
 block discarded – undo
146 146
     /**
147 147
      * Shows the project team view.
148 148
      *
149
-     * @param \Gitamin\Models\ProjectTeam $team
150 149
      *
151 150
      * @return \Illuminate\View\View
152 151
      */
@@ -184,7 +183,7 @@  discard block
 block discarded – undo
184 183
     /**
185 184
      * Updates a project.
186 185
      *
187
-     * @param \Gitamin\Models\Project $projects
186
+     * @param \Gitamin\Models\Project $project
188 187
      *
189 188
      * @return \Illuminate\Http\RedirectResponse
190 189
      */
Please login to merge, or discard this patch.
app/Http/Controllers/RepositoryController.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -44,6 +44,10 @@
 block discarded – undo
44 44
         return $this->showTree($team.'/'.$project, '');
45 45
     }
46 46
 
47
+    /**
48
+     * @param string $repo
49
+     * @param string $path
50
+     */
47 51
     public function showTree($repo, $path)
48 52
     {
49 53
         $repository = $this->getRepositoryFromName([Setting::get('git_repositories_path')], $repo);
Please login to merge, or discard this patch.
app/Http/helpers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      *
44 44
      * @param string $date
45 45
      *
46
-     * @return \Jenssegers\Date\Date
46
+     * @return string
47 47
      */
48 48
     function formatted_date($date)
49 49
     {
Please login to merge, or discard this patch.
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.