Skip to content

Commit ae505cb

Browse files
committed
fix psr-4 violation Whoops
1 parent a1f0b29 commit ae505cb

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

src/MsgOwlChannel.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace BoringDragon\MsgowlLaravelNotificationChannel;
44

5+
use BoringDragon\MsgowlLaravelNotificationChannel\Exceptions\CouldNotSendNotification;
56
use Illuminate\Contracts\Events\Dispatcher;
67
use Illuminate\Notifications\Events\NotificationFailed;
78
use Illuminate\Notifications\Notification;
@@ -25,7 +26,7 @@ public function __construct(MsgOwlClient $client, Dispatcher $dispatcher = null)
2526
* @param mixed $notifiable
2627
* @return object with response body data if succesful response from API | empty array if not
2728
*
28-
* @throws \BoringDragon\MsgowlLaravelNotificationChannel\CouldNotSendNotification
29+
* @throws \BoringDragon\MsgowlLaravelNotificationChannel\Exceptions\CouldNotSendNotification
2930
*/
3031
public function send($notifiable, Notification $notification)
3132
{

src/MsgOwlClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace BoringDragon\MsgowlLaravelNotificationChannel;
44

5+
use BoringDragon\MsgowlLaravelNotificationChannel\Exceptions\CouldNotSendNotification;
56
use Exception;
67
use GuzzleHttp\Client;
78

src/MsgOwlServiceProvider.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace BoringDragon\MsgowlLaravelNotificationChannel;
44

5+
use BoringDragon\MsgowlLaravelNotificationChannel\Exceptions\InvalidConfiguration;
56
use GuzzleHttp\Client;
67
use Illuminate\Support\ServiceProvider;
78

0 commit comments

Comments
 (0)