Completed
Pull Request — master (#17)
by Phecho
42:37
created
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.
app/Http/Controllers/GroupsController.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -130,7 +130,6 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * Shows the edit project team view.
132 132
      *
133
-     * @param \Gitamin\Models\ProjectTeam $team
134 133
      *
135 134
      * @return \Illuminate\View\View
136 135
      */
@@ -148,7 +147,6 @@  discard block
 block discarded – undo
148 147
     /**
149 148
      * Updates a project team.
150 149
      *
151
-     * @param \Gitamin\Models\ProjectTeam $team
152 150
      *
153 151
      * @return \Illuminate\Http\RedirectResponse
154 152
      */
Please login to merge, or discard this patch.
app/Http/Controllers/ProjectsController.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -108,7 +108,6 @@  discard block
 block discarded – undo
108 108
     /**
109 109
      * Show the form for editing the specified resource.
110 110
      *
111
-     * @param  int  $id
112 111
      * @return \Illuminate\Http\Response
113 112
      */
114 113
     public function edit($namespace, $project_path)
@@ -127,8 +126,6 @@  discard block
 block discarded – undo
127 126
     /**
128 127
      * Update the specified resource in storage.
129 128
      *
130
-     * @param  \Illuminate\Http\Request  $request
131
-     * @param  int  $id
132 129
      * @return \Illuminate\Http\Response
133 130
      */
134 131
     public function update($namespace, $project_path)
Please login to merge, or discard this patch.