diff --git a/app/Http/Controllers/Dashboard/SettingsController.php b/app/Http/Controllers/Dashboard/SettingsController.php index a5c4fbd0..682fc5e9 100644 --- a/app/Http/Controllers/Dashboard/SettingsController.php +++ b/app/Http/Controllers/Dashboard/SettingsController.php @@ -12,7 +12,6 @@ namespace CachetHQ\Cachet\Http\Controllers\Dashboard; use CachetHQ\Cachet\Bus\Commands\System\Config\UpdateConfigCommand; -use CachetHQ\Cachet\Bus\Commands\System\Mail\TestMailCommand; use CachetHQ\Cachet\Integrations\Contracts\Credits; use CachetHQ\Cachet\Models\User; use CachetHQ\Cachet\Notifications\System\SystemTestNotification; diff --git a/app/Notifications/Component/ComponentStatusChangedNotification.php b/app/Notifications/Component/ComponentStatusChangedNotification.php index b7a5b650..9b2ad282 100644 --- a/app/Notifications/Component/ComponentStatusChangedNotification.php +++ b/app/Notifications/Component/ComponentStatusChangedNotification.php @@ -71,7 +71,7 @@ class ComponentStatusChangedNotification extends Notification /** * Get the mail representation of the notification. * - * @param mixed $notifiable + * @param mixed $notifiable * * @return \Illuminate\Notifications\Messages\MailMessage */ diff --git a/app/Notifications/Incident/NewIncidentNotification.php b/app/Notifications/Incident/NewIncidentNotification.php index 2a20f4f9..2b7140fa 100644 --- a/app/Notifications/Incident/NewIncidentNotification.php +++ b/app/Notifications/Incident/NewIncidentNotification.php @@ -63,7 +63,7 @@ class NewIncidentNotification extends Notification /** * Get the mail representation of the notification. * - * @param mixed $notifiable + * @param mixed $notifiable * * @return \Illuminate\Notifications\Messages\MailMessage */ @@ -136,7 +136,7 @@ class NewIncidentNotification extends Notification 'ID' => "#{$this->incident->id}", 'Link' => $this->incident->permalink, ])) - ->footer(trans('cachet.subscriber.unsubscribe', ['link' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code)]));; + ->footer(trans('cachet.subscriber.unsubscribe', ['link' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code)])); }); } } diff --git a/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php b/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php index 6ba8342b..60c2afde 100644 --- a/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php +++ b/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php @@ -18,7 +18,6 @@ use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Messages\NexmoMessage; use Illuminate\Notifications\Messages\SlackMessage; use Illuminate\Notifications\Notification; -use Illuminate\Support\Facades\Config; use McCool\LaravelAutoPresenter\Facades\AutoPresenter; /** @@ -64,7 +63,7 @@ class IncidentUpdatedNotification extends Notification /** * Get the mail representation of the notification. * - * @param mixed $notifiable + * @param mixed $notifiable * * @return \Illuminate\Notifications\Messages\MailMessage */ @@ -144,7 +143,7 @@ class IncidentUpdatedNotification extends Notification 'ID' => "#{$this->update->id}", 'Link' => $this->update->permalink, ])) - ->footer(trans('cachet.subscriber.unsubscribe', ['link' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code)]));; + ->footer(trans('cachet.subscriber.unsubscribe', ['link' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code)])); }); } } diff --git a/app/Notifications/Schedule/NewScheduleNotification.php b/app/Notifications/Schedule/NewScheduleNotification.php index d2fe0188..0e88b699 100644 --- a/app/Notifications/Schedule/NewScheduleNotification.php +++ b/app/Notifications/Schedule/NewScheduleNotification.php @@ -62,7 +62,7 @@ class NewScheduleNotification extends Notification /** * Get the mail representation of the notification. * - * @param mixed $notifiable + * @param mixed $notifiable * * @return \Illuminate\Notifications\Messages\MailMessage */ @@ -120,7 +120,7 @@ class NewScheduleNotification extends Notification 'ID' => "#{$this->schedule->id}", 'Status' => $this->schedule->human_status, ])) - ->footer(trans('cachet.subscriber.unsubscribe', ['link' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code)]));; + ->footer(trans('cachet.subscriber.unsubscribe', ['link' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code)])); }); } } diff --git a/app/Notifications/Subscriber/VerifySubscriptionNotification.php b/app/Notifications/Subscriber/VerifySubscriptionNotification.php index f0c85306..8d781115 100644 --- a/app/Notifications/Subscriber/VerifySubscriptionNotification.php +++ b/app/Notifications/Subscriber/VerifySubscriptionNotification.php @@ -40,7 +40,7 @@ class VerifySubscriptionNotification extends Notification /** * Get the mail representation of the notification. * - * @param mixed $notifiable + * @param mixed $notifiable * * @return \Illuminate\Notifications\Messages\MailMessage */ diff --git a/app/Notifications/System/SystemTestNotification.php b/app/Notifications/System/SystemTestNotification.php index 747832a6..6958ec19 100644 --- a/app/Notifications/System/SystemTestNotification.php +++ b/app/Notifications/System/SystemTestNotification.php @@ -39,7 +39,7 @@ class SystemTestNotification extends Notification /** * Get the mail representation of the notification. * - * @param mixed $notifiable + * @param mixed $notifiable * * @return \Illuminate\Notifications\Messages\MailMessage */ diff --git a/app/Notifications/User/InviteUserNotification.php b/app/Notifications/User/InviteUserNotification.php index 519e0ab7..4b6267f6 100644 --- a/app/Notifications/User/InviteUserNotification.php +++ b/app/Notifications/User/InviteUserNotification.php @@ -40,7 +40,7 @@ class InviteUserNotification extends Notification /** * Get the mail representation of the notification. * - * @param mixed $notifiable + * @param mixed $notifiable * * @return \Illuminate\Notifications\Messages\MailMessage */