Completed
Pull Request — master (#2)
by Kazi Mainuddin
02:16
created
src/Provider/SmsServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         /**
25 25
          * Bind to service container.
26 26
          */
27
-        $this->app->singleton('tzsk-sms', function () {
27
+        $this->app->singleton('tzsk-sms', function() {
28 28
             return new SmsManager();
29 29
         });
30 30
     }
Please login to merge, or discard this patch.
src/Drivers/MasterDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function to($numbers)
28 28
     {
29 29
         $recipients = is_array($numbers) ? $numbers : [$numbers];
30
-        $recipients = array_map(function ($item) {
30
+        $recipients = array_map(function($item) {
31 31
             return trim($item);
32 32
         }, array_merge($this->recipients, $recipients));
33 33
 
Please login to merge, or discard this patch.