Completed
Push — master ( 58e37d...bad662 )
by Aly
23:56 queued 08:58
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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         $this->app->when(ExpoChannel::class)
19 19
             ->needs(Expo::class)
20
-            ->give(function () {
20
+            ->give(function() {
21 21
                 return new Expo(new ExpoRegistrar(new ExpoFileDriver()));
22 22
             });
23 23
 
Please login to merge, or discard this patch.