Completed
Pull Request — master (#434)
by Freek
21:20 queued 17:01
created
src/Notifications/Notifications/CleanupHasFailed.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Backup\Notifications\Notifications;
4 4
 
5
-use Spatie\Backup\Notifications\BaseNotification;
6 5
 use Illuminate\Notifications\Messages\MailMessage;
7
-use Illuminate\Notifications\Messages\SlackMessage;
8 6
 use Illuminate\Notifications\Messages\SlackAttachment;
7
+use Illuminate\Notifications\Messages\SlackMessage;
9 8
 use Spatie\Backup\Events\CleanupHasFailed as CleanupHasFailedEvent;
9
+use Spatie\Backup\Notifications\BaseNotification;
10 10
 
11 11
 class CleanupHasFailed extends BaseNotification
12 12
 {
Please login to merge, or discard this patch.
src/Notifications/Notifications/HealthyBackupWasFound.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Backup\Notifications\Notifications;
4 4
 
5
-use Spatie\Backup\Notifications\BaseNotification;
6 5
 use Illuminate\Notifications\Messages\MailMessage;
7
-use Illuminate\Notifications\Messages\SlackMessage;
8 6
 use Illuminate\Notifications\Messages\SlackAttachment;
7
+use Illuminate\Notifications\Messages\SlackMessage;
9 8
 use Spatie\Backup\Events\HealthyBackupWasFound as HealthyBackupWasFoundEvent;
9
+use Spatie\Backup\Notifications\BaseNotification;
10 10
 
11 11
 class HealthyBackupWasFound extends BaseNotification
12 12
 {
Please login to merge, or discard this patch.
src/Notifications/Notifications/UnhealthyBackupWasFound.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Backup\Notifications\Notifications;
4 4
 
5
-use Spatie\Backup\Notifications\BaseNotification;
6 5
 use Illuminate\Notifications\Messages\MailMessage;
7
-use Illuminate\Notifications\Messages\SlackMessage;
8 6
 use Illuminate\Notifications\Messages\SlackAttachment;
7
+use Illuminate\Notifications\Messages\SlackMessage;
9 8
 use Spatie\Backup\Events\UnhealthyBackupWasFound as UnhealthyBackupWasFoundEvent;
9
+use Spatie\Backup\Notifications\BaseNotification;
10 10
 
11 11
 class UnhealthyBackupWasFound extends BaseNotification
12 12
 {
Please login to merge, or discard this patch.
src/Tasks/Backup/DbDumperFactory.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Backup\Tasks\Backup;
4 4
 
5
-use Spatie\DbDumper\DbDumper;
6
-use Spatie\DbDumper\Databases\MySql;
7
-use Spatie\DbDumper\Databases\Sqlite;
5
+use Spatie\Backup\Exceptions\CannotCreateDbDumper;
8 6
 use Spatie\DbDumper\Databases\MongoDb;
7
+use Spatie\DbDumper\Databases\MySql;
9 8
 use Spatie\DbDumper\Databases\PostgreSql;
10
-use Spatie\Backup\Exceptions\CannotCreateDbDumper;
9
+use Spatie\DbDumper\Databases\Sqlite;
10
+use Spatie\DbDumper\DbDumper;
11 11
 
12 12
 class DbDumperFactory
13 13
 {
Please login to merge, or discard this patch.