Completed
Pull Request — master (#14)
by
unknown
07:50
created
src/Notifications/Senders/Mail.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,12 +29,12 @@
 block discarded – undo
29 29
     public function send()
30 30
     {
31 31
         $this->mailer->raw($this->message, function (Message $message) {
32
-          foreach ($this->config['to'] as $mailTo) {
32
+            foreach ($this->config['to'] as $mailTo) {
33 33
             $message
34
-              ->subject($this->subject)
35
-              ->from($this->config['from'])
36
-              ->to($mailTo);
37
-          }
34
+                ->subject($this->subject)
35
+                ->from($this->config['from'])
36
+                ->to($mailTo);
37
+            }
38 38
         });
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     public function send()
30 30
     {
31
-        $this->mailer->raw($this->message, function (Message $message) {
31
+        $this->mailer->raw($this->message, function(Message $message) {
32 32
           foreach ($this->config['to'] as $mailTo) {
33 33
             $message
34 34
               ->subject($this->subject)
Please login to merge, or discard this patch.
config/server-monitor.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,8 @@
 block discarded – undo
86 86
         'mail' => [
87 87
             'from' => '[email protected]',
88 88
             'to'   => [
89
-              '[email protected]',
90
-              '[email protected]'
89
+                '[email protected]',
90
+                '[email protected]'
91 91
             ]
92 92
         ],
93 93
 
Please login to merge, or discard this patch.