Passed
Push — develop ( 58e492...dcbf9f )
by nguereza
02:39
created
src/Message.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         $this->body = '';
157 157
         $this->attachments = [];
158 158
         $this->headers = [];
159
-        $this->uid = md5(uniqid((string)time()));
159
+        $this->uid = md5(uniqid((string) time()));
160 160
         $this->wrap = 70;
161 161
         $this->priority = 3;
162 162
 
@@ -639,7 +639,7 @@  discard block
 block discarded – undo
639 639
      */
640 640
     protected function encodeUtf8(?string $value): string
641 641
     {
642
-        $value = trim((string)$value);
642
+        $value = trim((string) $value);
643 643
         if (preg_match('/(\s)/', $value)) {
644 644
             return $this->encodeUtf8Words($value);
645 645
         }
Please login to merge, or discard this patch.