Passed
Push — master ( 9e6d2f...c6b62f )
by Zaahid
06:54
created
src/Message.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         );
163 163
         return array_values(array_filter(
164 164
             $parts,
165
-            function ($part) {
165
+            function($part) {
166 166
                 return !(
167 167
                     $part->isTextPart()
168 168
                     && $part->getContentDisposition() === 'inline'
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
     public function addAttachmentPart($stringOrHandle, $mimeType, $filename = null, $disposition = 'attachment')
396 396
     {
397 397
         if ($filename === null) {
398
-            $filename = 'file' . uniqid();
398
+            $filename = 'file'.uniqid();
399 399
         }
400 400
         $part = $this->messageHelperService
401 401
             ->getMultipartHelper()
Please login to merge, or discard this patch.