Skip to content

Commit 8ba3fc1

Browse files
Change the namespace
1 parent f4dbb48 commit 8ba3fc1

10 files changed

+23
-23
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@
2424

2525
"autoload": {
2626
"psr-4": {
27-
"BoringDragon\\MsgowlLaravelNotificationChannel\\": "src/"
27+
"MsgOwl\\MsgowlLaravelNotificationChannel\\": "src/"
2828
}
2929
},
3030
"autoload-dev": {
3131
"psr-4": {
32-
"BoringDragon\\MsgowlLaravelNotificationChannel\\Test\\": "tests"
32+
"MsgOwl\\MsgowlLaravelNotificationChannel\\Test\\": "tests"
3333
}
3434
},
3535
"extra": {
3636
"laravel": {
3737
"providers": [
38-
"BoringDragon\\MsgowlLaravelNotificationChannel\\MsgOwlServiceProvider"
38+
"MsgOwl\\MsgowlLaravelNotificationChannel\\MsgOwlServiceProvider"
3939
]
4040
}
4141
}

src/Exceptions/CouldNotSendNotification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BoringDragon\MsgowlLaravelNotificationChannel\Exceptions;
3+
namespace MsgOwl\MsgowlLaravelNotificationChannel\Exceptions;
44

55
use Exception;
66

src/Exceptions/InvalidConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BoringDragon\MsgowlLaravelNotificationChannel\Exceptions;
3+
namespace MsgOwl\MsgowlLaravelNotificationChannel\Exceptions;
44

55
use Exception;
66

src/MsgOwlChannel.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

3-
namespace BoringDragon\MsgowlLaravelNotificationChannel;
3+
namespace MsgOwl\MsgowlLaravelNotificationChannel;
44

5-
use BoringDragon\MsgowlLaravelNotificationChannel\Exceptions\CouldNotSendNotification;
5+
use MsgOwl\MsgowlLaravelNotificationChannel\Exceptions\CouldNotSendNotification;
66
use Illuminate\Contracts\Events\Dispatcher;
77
use Illuminate\Notifications\Events\NotificationFailed;
88
use Illuminate\Notifications\Notification;
99

1010
class MsgOwlChannel
1111
{
12-
/** @var \BoringDragon\MsgowlLaravelNotificationChannel\MsgOwlClient */
12+
/** @var \MsgOwl\MsgowlLaravelNotificationChannel\MsgOwlClient */
1313
protected $client;
1414

1515
private $dispatcher;
@@ -26,7 +26,7 @@ public function __construct(MsgOwlClient $client, ?Dispatcher $dispatcher = null
2626
* @param mixed $notifiable
2727
* @return object with response body data if succesful response from API | empty array if not
2828
*
29-
* @throws \BoringDragon\MsgowlLaravelNotificationChannel\Exceptions\CouldNotSendNotification
29+
* @throws \MsgOwl\MsgowlLaravelNotificationChannel\Exceptions\CouldNotSendNotification
3030
*/
3131
public function send($notifiable, Notification $notification)
3232
{

src/MsgOwlClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace BoringDragon\MsgowlLaravelNotificationChannel;
3+
namespace MsgOwl\MsgowlLaravelNotificationChannel;
44

5-
use BoringDragon\MsgowlLaravelNotificationChannel\Exceptions\CouldNotSendNotification;
5+
use MsgOwl\MsgowlLaravelNotificationChannel\Exceptions\CouldNotSendNotification;
66
use Exception;
77
use GuzzleHttp\Client;
88

src/MsgOwlMessage.php

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

33
declare(strict_types=1);
44

5-
namespace BoringDragon\MsgowlLaravelNotificationChannel;
5+
namespace MsgOwl\MsgowlLaravelNotificationChannel;
66

77
class MsgOwlMessage
88
{

src/MsgOwlServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace BoringDragon\MsgowlLaravelNotificationChannel;
3+
namespace MsgOwl\MsgowlLaravelNotificationChannel;
44

5-
use BoringDragon\MsgowlLaravelNotificationChannel\Exceptions\InvalidConfiguration;
5+
use MsgOwl\MsgowlLaravelNotificationChannel\Exceptions\InvalidConfiguration;
66
use GuzzleHttp\Client;
77
use Illuminate\Support\ServiceProvider;
88

tests/MsgOwlChannelTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace BoringDragon\MsgowlLaravelNotificationChannel\Test;
3+
namespace MsgOwl\MsgowlLaravelNotificationChannel\Test;
44

5-
use BoringDragon\MsgowlLaravelNotificationChannel\MsgOwlChannel;
6-
use BoringDragon\MsgowlLaravelNotificationChannel\MsgOwlClient;
7-
use BoringDragon\MsgowlLaravelNotificationChannel\MsgOwlMessage;
5+
use MsgOwl\MsgowlLaravelNotificationChannel\MsgOwlChannel;
6+
use MsgOwl\MsgowlLaravelNotificationChannel\MsgOwlClient;
7+
use MsgOwl\MsgowlLaravelNotificationChannel\MsgOwlMessage;
88
use GuzzleHttp\Client;
99
use Illuminate\Notifications\Notifiable;
1010
use Illuminate\Notifications\Notification;

tests/MsgOwlClientTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace BoringDragon\MsgowlLaravelNotificationChannel\Test;
3+
namespace MsgOwl\MsgowlLaravelNotificationChannel\Test;
44

5-
use BoringDragon\MsgowlLaravelNotificationChannel\MsgOwlClient;
6-
use BoringDragon\MsgowlLaravelNotificationChannel\MsgOwlMessage;
5+
use MsgOwl\MsgowlLaravelNotificationChannel\MsgOwlClient;
6+
use MsgOwl\MsgowlLaravelNotificationChannel\MsgOwlMessage;
77
use GuzzleHttp\Client;
88
use Mockery;
99
use PHPUnit\Framework\TestCase;

tests/MsgOwlMessageTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
declare(strict_types=1);
44

5-
namespace BoringDragon\MsgowlLaravelNotificationChannel\Test;
5+
namespace MsgOwl\MsgowlLaravelNotificationChannel\Test;
66

7-
use BoringDragon\MsgowlLaravelNotificationChannel\MsgOwlMessage;
7+
use MsgOwl\MsgowlLaravelNotificationChannel\MsgOwlMessage;
88
use PHPUnit\Framework\TestCase;
99

1010
class MsgOwlMessageTest extends TestCase

0 commit comments

Comments
 (0)