Completed
Push — master ( c502f1...c1289b )
by Atymic
02:47
created
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.
src/SmsBroadcastChannel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 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
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             $message = new SmsBroadcastMessage($message);
28 28
         }
29 29
 
30
-        if (! $message instanceof SmsBroadcastMessage) {
30
+        if (!$message instanceof SmsBroadcastMessage) {
31 31
             return;
32 32
         }
33 33
 
Please login to merge, or discard this patch.