Passed
Push — master ( 98f9f4...805483 )
by Claudson
59s queued 11s
created
src/SnsMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/SnsServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Sns.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
             ],
34 34
         ];
35 35
 
36
-        if (! empty($message->getSender())) {
36
+        if (!empty($message->getSender())) {
37 37
             $attributes += [
38 38
                 'AWS.SNS.SMS.SenderID' => [
39 39
                     'DataType' => 'String',
Please login to merge, or discard this patch.