@@ -102,7 +102,7 @@ |
||
| 102 | 102 | */ |
| 103 | 103 | public function transactional(bool $active = true) |
| 104 | 104 | { |
| 105 | - $this->promotional = ! $active; |
|
| 105 | + $this->promotional = !$active; |
|
| 106 | 106 | |
| 107 | 107 | return $this; |
| 108 | 108 | } |
@@ -14,11 +14,11 @@ |
||
| 14 | 14 | { |
| 15 | 15 | $this->app->when(SnsChannel::class) |
| 16 | 16 | ->needs(Sns::class) |
| 17 | - ->give(function () { |
|
| 17 | + ->give(function() { |
|
| 18 | 18 | return new Sns($this->app->make(SnsService::class)); |
| 19 | 19 | }); |
| 20 | 20 | |
| 21 | - $this->app->bind(SnsService::class, function () { |
|
| 21 | + $this->app->bind(SnsService::class, function() { |
|
| 22 | 22 | return new SnsService($this->app['config']['services.sns']); |
| 23 | 23 | }); |
| 24 | 24 | } |
@@ -32,8 +32,8 @@ |
||
| 32 | 32 | ], |
| 33 | 33 | ]; |
| 34 | 34 | |
| 35 | - if (! empty($message->getSender())) { |
|
| 36 | - $attributes += [ |
|
| 35 | + if (!empty($message->getSender())) { |
|
| 36 | + $attributes += [ |
|
| 37 | 37 | 'AWS.SNS.SMS.SenderID' => [ |
| 38 | 38 | 'DataType' => 'String', |
| 39 | 39 | 'StringValue' => $message->getSender(), |