Completed
Push — master ( 94ee24...f9feff )
by Atymic
05:04 queued 02:57
created
src/SmsBroadcastChannel.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
     public function send($notifiable, Notification $notification): void
19 19
     {
20
-        if (! $to = $notifiable->routeNotificationFor('smsbroadcast')) {
20
+        if (!$to = $notifiable->routeNotificationFor('smsbroadcast')) {
21 21
             return;
22 22
         }
23 23
 
Please login to merge, or discard this patch.
src/SmsBroadcastServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function register()
15 15
     {
16
-        $this->app->singleton(Client::class, function ($app) {
16
+        $this->app->singleton(Client::class, function($app) {
17 17
             if (empty($app['config']['services.smsbroadcast.username'])
18 18
                 || empty($app['config']['services.smsbroadcast.password'])) {
19 19
                 throw new \InvalidArgumentException('Missing SMS broadcast config in services');
Please login to merge, or discard this patch.