Passed
Pull Request — master (#2)
by Alan
04:00
created
src/SMSProviders/SnsSMS.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
             $data = $this->client->publish([
50 50
                 'Message' => $message,
51
-                'PhoneNumber' => '+' . $to,
51
+                'PhoneNumber' => '+'.$to,
52 52
                 'MessageAttributes' => [
53 53
                     'AWS.SNS.SMS.SenderID' => [
54 54
                         'DataType' => 'String',
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             ];
77 77
         } catch (\Exception $e) {
78 78
             return [
79
-                'error' => 'Error sending SMS: ' . $e->getMessage(),
79
+                'error' => 'Error sending SMS: '.$e->getMessage(),
80 80
                 'sent' => false,
81 81
             ];
82 82
         }
Please login to merge, or discard this patch.