@@ -25,7 +25,7 @@ |
||
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 | */ |
@@ -32,7 +32,7 @@ |
||
32 | 32 | /** |
33 | 33 | * Create a new invite group member command instance. |
34 | 34 | * |
35 | - * @param array $email |
|
35 | + * @param array $emails |
|
36 | 36 | * |
37 | 37 | * @return void |
38 | 38 | */ |
@@ -146,7 +146,7 @@ |
||
146 | 146 | /** |
147 | 147 | * Updates a project. |
148 | 148 | * |
149 | - * @param \Gitamin\Models\Project $projects |
|
149 | + * @param \Gitamin\Models\Project $project |
|
150 | 150 | * |
151 | 151 | * @return \Illuminate\Http\RedirectResponse |
152 | 152 | */ |
@@ -146,7 +146,6 @@ discard block |
||
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 |
||
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 | */ |
@@ -44,6 +44,10 @@ |
||
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); |
@@ -23,7 +23,6 @@ |
||
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 |
@@ -20,7 +20,6 @@ |
||
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 | */ |
@@ -25,7 +25,7 @@ |
||
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 | */ |
@@ -50,9 +50,9 @@ |
||
50 | 50 | /** |
51 | 51 | * Handle the event. |
52 | 52 | * |
53 | - * @param \Gitamin\Events\Issue\IssueHasAddedEvent $event |
|
53 | + * @param IssueWasAddedEvent $event |
|
54 | 54 | * |
55 | - * @return void |
|
55 | + * @return false|null |
|
56 | 56 | */ |
57 | 57 | public function handle(IssueWasAddedEvent $event) |
58 | 58 | { |