Completed
Pull Request — master (#3)
by
unknown
04:36
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.