@@ -36,7 +36,7 @@ discard block |
||
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 |
||
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 | */ |
@@ -13,7 +13,6 @@ |
||
13 | 13 | |
14 | 14 | use Gitamin\Commands\Issue\AddIssueCommand; |
15 | 15 | use Gitamin\Http\Controllers\Controller; |
16 | -use Gitamin\Models\Issue; |
|
17 | 16 | use Gitamin\Models\Project; |
18 | 17 | use GrahamCampbell\Binput\Facades\Binput; |
19 | 18 | use Illuminate\Support\Facades\Auth; |
@@ -43,7 +43,7 @@ |
||
43 | 43 | * @param \Gitamin\Models\Project $project |
44 | 44 | * @param int $action |
45 | 45 | */ |
46 | - protected function trigger(Project &$project, $action) |
|
46 | + protected function trigger(Project & $project, $action) |
|
47 | 47 | { |
48 | 48 | $data = [ |
49 | 49 | 'target_type' => 'Project', |