Completed
Push — master ( 56566c...f8ca6f )
by Muhammad
06:54
created
src/Drivers/DbDriver.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\Gammu\Drivers;
4 4
 
5
+use Exception;
5 6
 use Illuminate\Contracts\Config\Repository;
7
+use NotificationChannels\Gammu\Exceptions\CouldNotSendNotification;
6 8
 use NotificationChannels\Gammu\Models\Outbox;
7 9
 use NotificationChannels\Gammu\Models\OutboxMultipart;
8 10
 use NotificationChannels\Gammu\Models\Phone;
9
-use NotificationChannels\Gammu\Exceptions\CouldNotSendNotification;
10
-use Exception;
11 11
 
12 12
 class DbDriver extends DriverAbstract
13 13
 {
Please login to merge, or discard this patch.
src/GammuChannel.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\Gammu;
4 4
 
5
-use Illuminate\Notifications\Notification;
6 5
 use Illuminate\Contracts\Config\Repository;
7
-use NotificationChannels\Gammu\Drivers\DbDriver;
6
+use Illuminate\Notifications\Notification;
8 7
 use NotificationChannels\Gammu\Drivers\ApiDriver;
8
+use NotificationChannels\Gammu\Drivers\DbDriver;
9 9
 use NotificationChannels\Gammu\Exceptions\CouldNotSendNotification;
10 10
 
11 11
 class GammuChannel
Please login to merge, or discard this patch.