Skip to content

Commit ced6185

Browse files
committed
Fix import order
1 parent 97a3b13 commit ced6185

7 files changed

+22
-22
lines changed

src/PushoverChannel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace NotificationChannels\Pushover;
44

5-
use Illuminate\Contracts\Events\Dispatcher;
65
use Illuminate\Notifications\Notification;
6+
use Illuminate\Contracts\Events\Dispatcher;
77
use Illuminate\Notifications\Events\NotificationFailed;
88
use NotificationChannels\Pushover\Exceptions\ServiceCommunicationError;
99

tests/IntegrationTest.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
namespace NotificationChannels\Pushover\Test;
44

5-
use Illuminate\Contracts\Events\Dispatcher;
6-
use NotificationChannels\Pushover\PushoverMessage;
7-
use Illuminate\Notifications\Notification;
85
use Mockery;
9-
use NotificationChannels\Pushover\PushoverChannel;
10-
use NotificationChannels\Pushover\Pushover;
11-
use GuzzleHttp\Client as HttpClient;
126
use Orchestra\Testbench\TestCase;
7+
use GuzzleHttp\Client as HttpClient;
8+
use Illuminate\Notifications\Notification;
9+
use Illuminate\Contracts\Events\Dispatcher;
10+
use NotificationChannels\Pushover\Pushover;
11+
use NotificationChannels\Pushover\PushoverChannel;
12+
use NotificationChannels\Pushover\PushoverMessage;
1313

1414
class IntegrationTest extends TestCase
1515
{

tests/PushoverChannelTest.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
namespace NotificationChannels\Pushover\Test;
44

5+
use Mockery;
56
use Exception;
6-
use Illuminate\Contracts\Events\Dispatcher;
7-
use Illuminate\Notifications\Events\NotificationFailed;
7+
use Orchestra\Testbench\TestCase;
88
use Illuminate\Notifications\Notification;
9-
use Mockery;
10-
use NotificationChannels\Pushover\Exceptions\ServiceCommunicationError;
9+
use Illuminate\Contracts\Events\Dispatcher;
10+
use NotificationChannels\Pushover\Pushover;
1111
use NotificationChannels\Pushover\PushoverChannel;
1212
use NotificationChannels\Pushover\PushoverMessage;
13-
use NotificationChannels\Pushover\Pushover;
14-
use Orchestra\Testbench\TestCase;
13+
use Illuminate\Notifications\Events\NotificationFailed;
14+
use NotificationChannels\Pushover\Exceptions\ServiceCommunicationError;
1515

1616
class PushoverChannelTest extends TestCase
1717
{

tests/PushoverMessageTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
namespace NotificationChannels\Pushover\Test;
44

55
use Carbon\Carbon;
6-
use NotificationChannels\Pushover\Exceptions\EmergencyNotificationRequiresRetryAndExpire;
7-
use NotificationChannels\Pushover\PushoverMessage;
86
use Orchestra\Testbench\TestCase;
7+
use NotificationChannels\Pushover\PushoverMessage;
8+
use NotificationChannels\Pushover\Exceptions\EmergencyNotificationRequiresRetryAndExpire;
99

1010
class PushoverMessageTest extends TestCase
1111
{

tests/PushoverReceiverTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace NotificationChannels\Pushover\Test;
44

5-
use NotificationChannels\Pushover\PushoverReceiver;
65
use Orchestra\Testbench\TestCase;
6+
use NotificationChannels\Pushover\PushoverReceiver;
77

88
class PushoverReceiverTest extends TestCase
99
{

tests/PushoverServiceProviderTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
namespace NotificationChannels\Pushover\Test;
44

5-
use Illuminate\Contracts\Foundation\Application;
65
use Mockery;
6+
use Orchestra\Testbench\TestCase;
77
use NotificationChannels\Pushover\Pushover;
8+
use Illuminate\Contracts\Foundation\Application;
89
use NotificationChannels\Pushover\PushoverChannel;
910
use NotificationChannels\Pushover\PushoverServiceProvider;
10-
use Orchestra\Testbench\TestCase;
1111

1212
class PushoverServiceProviderTest extends TestCase
1313
{

tests/PushoverTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
namespace NotificationChannels\Pushover\Test;
44

5+
use Mockery;
56
use Exception;
7+
use Orchestra\Testbench\TestCase;
8+
use GuzzleHttp\Client as HttpClient;
69
use GuzzleHttp\Exception\RequestException;
7-
use Mockery;
10+
use NotificationChannels\Pushover\Pushover;
811
use NotificationChannels\Pushover\Exceptions\CouldNotSendNotification;
912
use NotificationChannels\Pushover\Exceptions\ServiceCommunicationError;
10-
use NotificationChannels\Pushover\Pushover;
11-
use GuzzleHttp\Client as HttpClient;
12-
use Orchestra\Testbench\TestCase;
1313

1414
class PushoverTest extends TestCase
1515
{

0 commit comments

Comments
 (0)