Skip to content

Commit a54a982

Browse files
AlymosulStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent e5d5398 commit a54a982

6 files changed

+13
-13
lines changed

src/ExpoChannel.php

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

33
namespace NotificationChannels\ExpoPushNotifications;
44

5+
use ExponentPhpSDK\Exceptions\ExpoException;
56
use ExponentPhpSDK\Expo;
6-
use Illuminate\Notifications\Notification;
77
use Illuminate\Contracts\Events\Dispatcher;
8-
use ExponentPhpSDK\Exceptions\ExpoException;
98
use Illuminate\Notifications\Events\NotificationFailed;
9+
use Illuminate\Notifications\Notification;
1010
use NotificationChannels\ExpoPushNotifications\Exceptions\CouldNotSendNotification;
1111

1212
class ExpoChannel

src/ExpoPushNotificationsServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
use ExponentPhpSDK\Expo;
66
use ExponentPhpSDK\ExpoRegistrar;
77
use ExponentPhpSDK\ExpoRepository;
8-
use Illuminate\Support\ServiceProvider;
98
use ExponentPhpSDK\Repositories\ExpoFileDriver;
9+
use Illuminate\Support\ServiceProvider;
1010
use NotificationChannels\ExpoPushNotifications\Repositories\ExpoDatabaseDriver;
1111

1212
class ExpoPushNotificationsServiceProvider extends ServiceProvider

src/Http/ExpoController.php

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

33
namespace NotificationChannels\ExpoPushNotifications\Http;
44

5-
use Illuminate\Http\Request;
65
use Illuminate\Http\JsonResponse;
6+
use Illuminate\Http\Request;
77
use Illuminate\Routing\Controller;
88
use Illuminate\Support\Facades\Auth;
99
use Illuminate\Support\Facades\Validator;

tests/ChannelTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
namespace NotificationChannels\ExpoPushNotifications\Test;
44

5-
use Mockery;
5+
use ExponentPhpSDK\Exceptions\ExpoException;
66
use ExponentPhpSDK\Expo;
77
use Illuminate\Events\Dispatcher;
8+
use Illuminate\Notifications\Events\NotificationFailed;
89
use Illuminate\Notifications\Notifiable;
910
use Illuminate\Notifications\Notification;
10-
use ExponentPhpSDK\Exceptions\ExpoException;
11-
use Illuminate\Notifications\Events\NotificationFailed;
11+
use Mockery;
1212
use NotificationChannels\ExpoPushNotifications\ExpoChannel;
1313
use NotificationChannels\ExpoPushNotifications\ExpoMessage;
1414

tests/ExpoControllerTest.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
namespace NotificationChannels\ExpoPushNotifications\Test;
44

55
use ExponentPhpSDK\Expo;
6-
use Illuminate\Http\Request;
76
use ExponentPhpSDK\ExpoRegistrar;
8-
use Illuminate\Events\Dispatcher;
97
use ExponentPhpSDK\ExpoRepository;
8+
use ExponentPhpSDK\Repositories\ExpoFileDriver;
9+
use Illuminate\Contracts\Validation\Factory;
10+
use Illuminate\Events\Dispatcher;
11+
use Illuminate\Http\Request;
1012
use Illuminate\Support\Facades\Auth;
1113
use Illuminate\Support\Facades\Validator;
12-
use Illuminate\Contracts\Validation\Factory;
13-
use ExponentPhpSDK\Repositories\ExpoFileDriver;
1414
use NotificationChannels\ExpoPushNotifications\ExpoChannel;
15-
use NotificationChannels\ExpoPushNotifications\Models\Interest;
1615
use NotificationChannels\ExpoPushNotifications\Http\ExpoController;
16+
use NotificationChannels\ExpoPushNotifications\Models\Interest;
1717
use NotificationChannels\ExpoPushNotifications\Repositories\ExpoDatabaseDriver;
1818

1919
class ExpoControllerTest extends TestCase

tests/TestCase.php

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

33
namespace NotificationChannels\ExpoPushNotifications\Test;
44

5-
use Orchestra\Testbench\TestCase as OrchestraTestCase;
65
use NotificationChannels\ExpoPushNotifications\ExpoPushNotificationsServiceProvider;
6+
use Orchestra\Testbench\TestCase as OrchestraTestCase;
77

88
abstract class TestCase extends OrchestraTestCase
99
{

0 commit comments

Comments
 (0)