From 8ba3fc166a869fe4b66e615bbb04287b7530e1da Mon Sep 17 00:00:00 2001 From: Boring Dragon Date: Mon, 4 Nov 2024 19:36:03 +0500 Subject: [PATCH] Change the namespace --- composer.json | 6 +++--- src/Exceptions/CouldNotSendNotification.php | 2 +- src/Exceptions/InvalidConfiguration.php | 2 +- src/MsgOwlChannel.php | 8 ++++---- src/MsgOwlClient.php | 4 ++-- src/MsgOwlMessage.php | 2 +- src/MsgOwlServiceProvider.php | 4 ++-- tests/MsgOwlChannelTest.php | 8 ++++---- tests/MsgOwlClientTest.php | 6 +++--- tests/MsgOwlMessageTest.php | 4 ++-- 10 files changed, 23 insertions(+), 23 deletions(-) diff --git a/composer.json b/composer.json index ba32fb8..3f603b6 100644 --- a/composer.json +++ b/composer.json @@ -24,18 +24,18 @@ "autoload": { "psr-4": { - "BoringDragon\\MsgowlLaravelNotificationChannel\\": "src/" + "MsgOwl\\MsgowlLaravelNotificationChannel\\": "src/" } }, "autoload-dev": { "psr-4": { - "BoringDragon\\MsgowlLaravelNotificationChannel\\Test\\": "tests" + "MsgOwl\\MsgowlLaravelNotificationChannel\\Test\\": "tests" } }, "extra": { "laravel": { "providers": [ - "BoringDragon\\MsgowlLaravelNotificationChannel\\MsgOwlServiceProvider" + "MsgOwl\\MsgowlLaravelNotificationChannel\\MsgOwlServiceProvider" ] } } diff --git a/src/Exceptions/CouldNotSendNotification.php b/src/Exceptions/CouldNotSendNotification.php index af63942..0b44d5e 100644 --- a/src/Exceptions/CouldNotSendNotification.php +++ b/src/Exceptions/CouldNotSendNotification.php @@ -1,6 +1,6 @@