Passed
Branch master (efb655)
by reza
04:34
created
Category
src/SmsirChannel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     public function send($notifiable, Notification $notification)
27 27
     {
28 28
 
29
-        if(! $to = $notifiable->routeNotificationFor('smsir')) {
29
+        if (!$to = $notifiable->routeNotificationFor('smsir')) {
30 30
             return;
31 31
         }
32 32
         
Please login to merge, or discard this patch.
src/SmsirServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
                 __DIR__ . '/../configs/smsir.php' => config_path('smsir.php'),
26 26
             ], 'config');
27 27
         }
28
-        $this->app->bind('smsir', function ($app) {
28
+        $this->app->bind('smsir', function($app) {
29 29
             return new SmsirClient(config('smsir.api-key'), config('smsir.secret-key'), config('smsir.line-number'), config('smsir.request-timeout'));
30 30
         });
31 31
     }
Please login to merge, or discard this patch.