Completed
Push — master ( bad662...5b32ef )
by Aly
11:55
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 1 patch
Spacing   +3 added lines, -3 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
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     protected function setupConfig()
70 70
     {
71 71
         $this->publishes([
72
-            __DIR__ . '/../config/exponent-push-notifications.php' => config_path('exponent-push-notifications.php'),
72
+            __DIR__.'/../config/exponent-push-notifications.php' => config_path('exponent-push-notifications.php'),
73 73
         ], 'config');
74 74
 
75 75
         $this->mergeConfigFrom(__DIR__.'/../config/exponent-push-notifications.php', 'exponent-push-notifications');
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         if ($repository instanceof ExpoDatabaseDriver && !class_exists('CreateExponentPushNotificationInterestsTable')) {
88 88
             $timestamp = date('Y_m_d_His', time());
89 89
             $this->publishes([
90
-                __DIR__ . '/../migrations/create_exponent_push_notification_interests_table.php.stub' => database_path("/migrations/{$timestamp}_create_exponent_push_notification_interests_table.php"),
90
+                __DIR__.'/../migrations/create_exponent_push_notification_interests_table.php.stub' => database_path("/migrations/{$timestamp}_create_exponent_push_notification_interests_table.php"),
91 91
             ], 'migrations');
92 92
         }
93 93
     }
Please login to merge, or discard this patch.