@@ -26,7 +26,7 @@ discard block |
||
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 |
||
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"), |
@@ -235,7 +235,7 @@ |
||
235 | 235 | 'data' => $this->jsonData, |
236 | 236 | 'priority' => $this->priority, |
237 | 237 | ]; |
238 | - if (! empty($this->channelId)) { |
|
238 | + if (!empty($this->channelId)) { |
|
239 | 239 | $message['channelId'] = $this->channelId; |
240 | 240 | } |
241 | 241 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -Route::group(['prefix' => 'api/exponent/devices', 'middleware' => 'expo.middleware'], function () { |
|
3 | +Route::group(['prefix' => 'api/exponent/devices', 'middleware' => 'expo.middleware'], function() { |
|
4 | 4 | Route::post('subscribe', [ |
5 | 5 | 'as' => 'register-interest', |
6 | 6 | 'uses' => 'NotificationChannels\ExpoPushNotifications\Http\ExpoController@subscribe', |