Passed
Push — master ( 2579fe...c39097 )
by Aly
01:15 queued 13s
created
src/Http/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-Route::group(['prefix' => 'api/exponent/devices', 'middleware' => ['auth:api', 'bindings']], function () {
3
+Route::group(['prefix' => 'api/exponent/devices', 'middleware' => ['auth:api', 'bindings']], function() {
4 4
     Route::post('subscribe', [
5 5
         'as'    =>  'register-interest',
6 6
         'uses'  =>  'NotificationChannels\ExpoPushNotifications\Http\ExpoController@subscribe',
Please login to merge, or discard this patch.
src/ExpoPushNotificationsServiceProvider.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 use ExponentPhpSDK\Expo;
6 6
 use ExponentPhpSDK\ExpoRegistrar;
7 7
 use ExponentPhpSDK\ExpoRepository;
8
-use Illuminate\Support\ServiceProvider;
9 8
 use ExponentPhpSDK\Repositories\ExpoFileDriver;
9
+use Illuminate\Support\ServiceProvider;
10 10
 use NotificationChannels\ExpoPushNotifications\Repositories\ExpoDatabaseDriver;
11 11
 
12 12
 class ExpoPushNotificationsServiceProvider extends ServiceProvider
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
         $this->app->when(ExpoChannel::class)
28 28
             ->needs(Expo::class)
29
-            ->give(function () use ($repository) {
29
+            ->give(function() use ($repository) {
30 30
                 return new Expo(new ExpoRegistrar($repository));
31 31
             });
32 32
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     private function shouldPublishMigrations(ExpoRepository $repository)
86 86
     {
87
-        if ($repository instanceof ExpoDatabaseDriver && ! class_exists('CreateExponentPushNotificationInterestsTable')) {
87
+        if ($repository instanceof ExpoDatabaseDriver && !class_exists('CreateExponentPushNotificationInterestsTable')) {
88 88
             $timestamp = date('Y_m_d_His', time());
89 89
             $this->publishes([
90 90
                 __DIR__.'/../migrations/create_exponent_push_notification_interests_table.php.stub' => database_path("/migrations/{$timestamp}_create_exponent_push_notification_interests_table.php"),
Please login to merge, or discard this patch.
src/ExpoChannel.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\ExpoPushNotifications;
4 4
 
5
+use ExponentPhpSDK\Exceptions\ExpoException;
5 6
 use ExponentPhpSDK\Expo;
6
-use Illuminate\Notifications\Notification;
7 7
 use Illuminate\Contracts\Events\Dispatcher;
8
-use ExponentPhpSDK\Exceptions\ExpoException;
9 8
 use Illuminate\Notifications\Events\NotificationFailed;
9
+use Illuminate\Notifications\Notification;
10 10
 use NotificationChannels\ExpoPushNotifications\Exceptions\CouldNotSendNotification;
11 11
 
12 12
 class ExpoChannel
Please login to merge, or discard this patch.
src/ExpoMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@
 block discarded – undo
213 213
             'ttl'       =>  $this->ttl,
214 214
             'data'      =>  $this->jsonData,
215 215
         ];
216
-        if (! empty($this->channelId)) {
216
+        if (!empty($this->channelId)) {
217 217
             $message['channelId'] = $this->channelId;
218 218
         }
219 219
         
Please login to merge, or discard this patch.