@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | { |
| 36 | 36 | $routing = collect($notifiable->routeNotificationFor('IonicPush')); |
| 37 | 37 | |
| 38 | - if (! $routing->first()) { |
|
| 38 | + if (!$routing->first()) { |
|
| 39 | 39 | return; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | $message = $notification->toIonicPush($notifiable); |
| 49 | 49 | |
| 50 | 50 | $ionicPushData = array_merge( |
| 51 | - [$message->getSendToType() => $routing->first()], |
|
| 51 | + [ $message->getSendToType() => $routing->first() ], |
|
| 52 | 52 | $message->toArray() |
| 53 | 53 | ); |
| 54 | 54 | |