@@ -2,12 +2,12 @@ |
||
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 | { |
@@ -2,10 +2,10 @@ |
||
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 |