diff --git a/src/Notifications/Notifications/BackupHasFailedNotification.php b/src/Notifications/Notifications/BackupHasFailedNotification.php index 9c5e15f2..160e930f 100644 --- a/src/Notifications/Notifications/BackupHasFailedNotification.php +++ b/src/Notifications/Notifications/BackupHasFailedNotification.php @@ -4,7 +4,7 @@ use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Messages\SlackAttachment; -use Illuminate\Notifications\Messages\SlackMessage; +use Illuminate\Notifications\Slack\SlackMessage; use Spatie\Backup\Events\BackupHasFailed; use Spatie\Backup\Notifications\BaseNotification; use Spatie\Backup\Notifications\Channels\Discord\DiscordMessage; diff --git a/src/Notifications/Notifications/BackupWasSuccessfulNotification.php b/src/Notifications/Notifications/BackupWasSuccessfulNotification.php index 4f37b35f..ca0520df 100644 --- a/src/Notifications/Notifications/BackupWasSuccessfulNotification.php +++ b/src/Notifications/Notifications/BackupWasSuccessfulNotification.php @@ -4,7 +4,7 @@ use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Messages\SlackAttachment; -use Illuminate\Notifications\Messages\SlackMessage; +use Illuminate\Notifications\Slack\SlackMessage; use Spatie\Backup\Events\BackupWasSuccessful; use Spatie\Backup\Notifications\BaseNotification; use Spatie\Backup\Notifications\Channels\Discord\DiscordMessage; diff --git a/src/Notifications/Notifications/CleanupHasFailedNotification.php b/src/Notifications/Notifications/CleanupHasFailedNotification.php index 93a5f13f..8760161f 100644 --- a/src/Notifications/Notifications/CleanupHasFailedNotification.php +++ b/src/Notifications/Notifications/CleanupHasFailedNotification.php @@ -4,7 +4,7 @@ use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Messages\SlackAttachment; -use Illuminate\Notifications\Messages\SlackMessage; +use Illuminate\Notifications\Slack\SlackMessage; use Spatie\Backup\Events\CleanupHasFailed; use Spatie\Backup\Notifications\BaseNotification; use Spatie\Backup\Notifications\Channels\Discord\DiscordMessage; diff --git a/src/Notifications/Notifications/CleanupWasSuccessfulNotification.php b/src/Notifications/Notifications/CleanupWasSuccessfulNotification.php index b1d2001e..4b1188b6 100644 --- a/src/Notifications/Notifications/CleanupWasSuccessfulNotification.php +++ b/src/Notifications/Notifications/CleanupWasSuccessfulNotification.php @@ -4,7 +4,7 @@ use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Messages\SlackAttachment; -use Illuminate\Notifications\Messages\SlackMessage; +use Illuminate\Notifications\Slack\SlackMessage; use Spatie\Backup\Events\CleanupWasSuccessful; use Spatie\Backup\Notifications\BaseNotification; use Spatie\Backup\Notifications\Channels\Discord\DiscordMessage; diff --git a/src/Notifications/Notifications/HealthyBackupWasFoundNotification.php b/src/Notifications/Notifications/HealthyBackupWasFoundNotification.php index 444097ea..b08d0d97 100644 --- a/src/Notifications/Notifications/HealthyBackupWasFoundNotification.php +++ b/src/Notifications/Notifications/HealthyBackupWasFoundNotification.php @@ -4,7 +4,7 @@ use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Messages\SlackAttachment; -use Illuminate\Notifications\Messages\SlackMessage; +use Illuminate\Notifications\Slack\SlackMessage; use Spatie\Backup\Events\HealthyBackupWasFound; use Spatie\Backup\Notifications\BaseNotification; use Spatie\Backup\Notifications\Channels\Discord\DiscordMessage; diff --git a/src/Notifications/Notifications/UnhealthyBackupWasFoundNotification.php b/src/Notifications/Notifications/UnhealthyBackupWasFoundNotification.php index 41701fb7..120a31db 100644 --- a/src/Notifications/Notifications/UnhealthyBackupWasFoundNotification.php +++ b/src/Notifications/Notifications/UnhealthyBackupWasFoundNotification.php @@ -4,7 +4,7 @@ use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Messages\SlackAttachment; -use Illuminate\Notifications\Messages\SlackMessage; +use Illuminate\Notifications\Slack\SlackMessage; use Spatie\Backup\Events\UnhealthyBackupWasFound; use Spatie\Backup\Notifications\BaseNotification; use Spatie\Backup\Notifications\Channels\Discord\DiscordMessage;