Passed
Pull Request — master (#41)
by
unknown
03:19 queued 01:05
created
src/Mail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
             if (strpos($email, ';')) {
176 176
                 $emails = explode(';', $email);
177 177
 
178
-                $emails = array_map(function ($item) {
178
+                $emails = array_map(function($item) {
179 179
                     return trim($item);
180 180
                 }, $emails);
181 181
 
Please login to merge, or discard this patch.
src/Base.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@
 block discarded – undo
219 219
         if (!empty($this->pdf)) {
220 220
             $this->mail->addStringAttachment(
221 221
                 $this->pdf,
222
-                $this->fields->id. '.pdf',
222
+                $this->fields->id . '.pdf',
223 223
                 'base64',
224 224
                 'application/pdf'
225 225
             );
Please login to merge, or discard this patch.