Passed
Push — develop ( 275444...04f388 )
by nguereza
10:28
created
src/Transport/NullTransport.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
  * @class NullTransport
55 55
  * @package Platine\Mail\Transport
56 56
  */
57
-class NullTransport implements TransportInterface
58
-{
57
+class NullTransport implements TransportInterface {
59 58
     /**
60 59
      * {@inheritedoc}
61 60
      */
Please login to merge, or discard this patch.
src/Transport/SMTP.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
  * @class SMTP
58 58
  * @package Platine\Mail\Transport
59 59
  */
60
-class SMTP implements TransportInterface
61
-{
60
+class SMTP implements TransportInterface {
62 61
     /**
63 62
      * End of line char
64 63
      */
Please login to merge, or discard this patch.
src/Transport/TransportInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
  * @class TransportInterface
55 55
  * @package Platine\Mail\Transport
56 56
  */
57
-interface TransportInterface
58
-{
57
+interface TransportInterface {
59 58
     /**
60 59
      * Send the message
61 60
      * @return bool
Please login to merge, or discard this patch.
src/Message.php 3 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -103,16 +103,16 @@  discard block
 block discarded – undo
103 103
      */
104 104
     protected string $body = '';
105 105
 
106
-     /**
107
-     * The mail attachments
108
-     * @var array<int, array<string, string>>
109
-     */
106
+        /**
107
+         * The mail attachments
108
+         * @var array<int, array<string, string>>
109
+         */
110 110
     protected array $attachments = [];
111 111
 
112
-     /**
113
-     * The mail headers
114
-     * @var array<string, mixed>
115
-     */
112
+        /**
113
+         * The mail headers
114
+         * @var array<string, mixed>
115
+         */
116 116
     protected array $headers = [];
117 117
 
118 118
     /**
@@ -284,8 +284,8 @@  discard block
 block discarded – undo
284 284
     }
285 285
 
286 286
     /**
287
-    *  {@inheritedoc}
288
-    */
287
+     *  {@inheritedoc}
288
+     */
289 289
     public function setReplyTo(string $email, ?string $name = null): self
290 290
     {
291 291
         $this->replyTo = $this->formatHeader($email, $name);
@@ -463,17 +463,17 @@  discard block
 block discarded – undo
463 463
         }
464 464
 
465 465
         $this->addHeader('X-Priority', $this->priority)
466
-               ->addHeader('X-Mailer', 'Platine PHP Mail')
467
-               ->addHeader('Subject', $this->subject)
468
-               ->addHeader('To', join(', ', $this->to))
469
-               ->addHeader('Date', date('r'));
466
+                ->addHeader('X-Mailer', 'Platine PHP Mail')
467
+                ->addHeader('Subject', $this->subject)
468
+                ->addHeader('To', join(', ', $this->to))
469
+                ->addHeader('Date', date('r'));
470 470
 
471 471
         if ($this->hasAttachments()) {
472 472
             $this->addHeader('MIME-Version', '1.0')
473
-                 ->addHeader(
474
-                     'Content-Type',
475
-                     sprintf('multipart/mixed; boundary="%s"', $this->uid)
476
-                 );
473
+                    ->addHeader(
474
+                        'Content-Type',
475
+                        sprintf('multipart/mixed; boundary="%s"', $this->uid)
476
+                    );
477 477
         }
478 478
 
479 479
         return $this;
@@ -577,7 +577,7 @@  discard block
 block discarded – undo
577 577
     protected function filterEmail(string $email): string
578 578
     {
579 579
         $rules = [
580
-           "\r" => '',
580
+            "\r" => '',
581 581
             "\n" => '',
582 582
             "\t" => '',
583 583
             '"'  => '',
@@ -602,7 +602,7 @@  discard block
 block discarded – undo
602 602
     protected function filterName(string $name): string
603 603
     {
604 604
         $rules = [
605
-           "\r" => '',
605
+            "\r" => '',
606 606
             "\n" => '',
607 607
             "\t" => '',
608 608
             '"'  => "'",
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
         $this->body = '';
156 156
         $this->attachments = [];
157 157
         $this->headers = [];
158
-        $this->uid = md5(uniqid((string)time()));
158
+        $this->uid = md5(uniqid((string) time()));
159 159
         $this->wrap = 70;
160 160
         $this->priority = 3;
161 161
 
@@ -645,7 +645,7 @@  discard block
 block discarded – undo
645 645
      */
646 646
     protected function encodeUtf8(?string $value): string
647 647
     {
648
-        $valueClean = trim((string)$value);
648
+        $valueClean = trim((string) $value);
649 649
         if (preg_match('/(\s)/', $valueClean)) {
650 650
             return $this->encodeUtf8Words($valueClean);
651 651
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
  * @class Message
55 55
  * @package Platine\Mail
56 56
  */
57
-class Message implements MessageInterface
58
-{
57
+class Message implements MessageInterface {
59 58
     /**
60 59
      * End of line char
61 60
      */
@@ -136,8 +135,7 @@  discard block
 block discarded – undo
136 135
     /**
137 136
      * Create new instance
138 137
      */
139
-    public function __construct()
140
-    {
138
+    public function __construct() {
141 139
         $this->reset();
142 140
     }
143 141
 
Please login to merge, or discard this patch.