Skip to content

Commit

Permalink
Merge pull request #3 from io-digital/namespace-updates
Browse files Browse the repository at this point in the history
Update namespaces.
  • Loading branch information
garethnic authored Feb 11, 2021
2 parents 948257e + 9fc3da1 commit 6782cb8
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "io-digital/clickatell",
"description": "Clickatell notifications driver",
"keywords": ["laravel", "notifications", "clickatell", "sms"],
"homepage": "https://github.com/laravel-notification-channels/clickatell",
"homepage": "https://github.com/io-digital/clickatell/clickatell",
"license": "MIT",
"authors": [
{
Expand Down Expand Up @@ -33,12 +33,12 @@
},
"autoload": {
"psr-4": {
"NotificationChannels\\Clickatell\\": "src"
"IoDigital\\Clickatell\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\Clickatell\\Test\\": "tests"
"IoDigital\\Clickatell\\Test\\": "tests"
}
},
"config": {
Expand All @@ -50,7 +50,7 @@
"extra": {
"laravel": {
"providers": [
"NotificationChannels\\Clickatell\\ClickatellServiceProvider"
"IoDigital\\Clickatell\\ClickatellServiceProvider"
]
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/ClickatellChannel.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace NotificationChannels\Clickatell;
namespace IoDigital\Clickatell;

use Illuminate\Notifications\Notification;
use NotificationChannels\Clickatell\Exceptions\CouldNotSendNotification;
use IoDigital\Clickatell\Exceptions\CouldNotSendNotification;

class ClickatellChannel
{
Expand Down
4 changes: 2 additions & 2 deletions src/ClickatellClient.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace NotificationChannels\Clickatell;
namespace IoDigital\Clickatell;

use Clickatell\Rest;
use NotificationChannels\Clickatell\Exceptions\CouldNotSendNotification;
use IoDigital\Clickatell\Exceptions\CouldNotSendNotification;
use stdClass;

class ClickatellClient
Expand Down
2 changes: 1 addition & 1 deletion src/ClickatellMessage.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace NotificationChannels\Clickatell;
namespace IoDigital\Clickatell;

class ClickatellMessage
{
Expand Down
2 changes: 1 addition & 1 deletion src/ClickatellServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace NotificationChannels\Clickatell;
namespace IoDigital\Clickatell;

use Clickatell\Rest;
use Illuminate\Support\ServiceProvider;
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/CouldNotSendNotification.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace NotificationChannels\Clickatell\Exceptions;
namespace IoDigital\Clickatell\Exceptions;

class CouldNotSendNotification extends \Exception
{
Expand Down
6 changes: 3 additions & 3 deletions tests/ClickatellClientTest.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace NotificationChannels\Clickatell\Test;
namespace IoDigital\Clickatell\Test;

use Clickatell\Rest;
use IoDigital\Clickatell\ClickatellClient;
use IoDigital\Clickatell\Exceptions\CouldNotSendNotification;
use Mockery;
use NotificationChannels\Clickatell\ClickatellClient;
use NotificationChannels\Clickatell\Exceptions\CouldNotSendNotification;
use PHPUnit\Framework\TestCase;

class ClickatellClientTest extends TestCase
Expand Down
4 changes: 2 additions & 2 deletions tests/ClickatellMessageTest.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace NotificationChannels\Clickatell\Test;
namespace IoDigital\Clickatell\Test;

use Clickatell\Rest;
use NotificationChannels\Clickatell\ClickatellMessage;
use IoDigital\Clickatell\ClickatellMessage;
use PHPUnit\Framework\TestCase;

class ClickatellMessageTest extends TestCase
Expand Down

0 comments on commit 6782cb8

Please sign in to comment.