Completed
Push — master ( 29036c...ecfd91 )
by Michał
04:54
created
transports/slack/Message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
             $this->setIcon($attributes['icon']);
105 105
         }
106 106
 
107
-        foreach($attributes['attachments'] as $attachment) {
107
+        foreach ($attributes['attachments'] as $attachment) {
108 108
             $this->attach($attachment);
109 109
         }
110 110
 
Please login to merge, or discard this patch.
transports/Slack.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
         $message['endpoint']     = $message['endpoint'] ?? $this->endpoint;
148 148
         $message['username']     = $message['username'] ?? $this->username;
149 149
         $message['parse']        = $message['parse']    ?? $this->parse;
150
-        $message['link_names']   = $this->linkNames    ? 1 : 0;
150
+        $message['link_names']   = $this->linkNames ? 1 : 0;
151 151
         $message['unfurl_links'] = $this->unfurlLinks;
152 152
         $message['unfurl_media'] = $this->unfurlMedia;
153 153
         $message['mrkdwn']       = $this->allowMarkdown;
Please login to merge, or discard this patch.
transports/mail/drivers/Mailgun.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
                     'api', $this->key
74 74
                 ],
75 75
                 'multipart' => [
76
-                    ['name' => 'to',      'contents' => implode(',', $recipients)],
76
+                    ['name' => 'to', 'contents' => implode(',', $recipients)],
77 77
                     ['name' => 'message', 'contents' => $message->toString(), 'filename' => 'message.mime'],
78 78
                 ]
79 79
             ]);
Please login to merge, or discard this patch.