Passed
Push — develop ( 334e11...12826f )
by nguereza
27:03 queued 24:58
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/Sendmail.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@  discard block
 block discarded – undo
55 55
  * Class Sendmail
56 56
  * @package Platine\Mail\Transport
57 57
  */
58
-class Sendmail implements TransportInterface
59
-{
58
+class Sendmail implements TransportInterface {
60 59
     /**
61 60
      *
62 61
      * @var string
@@ -67,8 +66,7 @@  discard block
 block discarded – undo
67 66
      * Create new instance
68 67
      * @param string $path
69 68
      */
70
-    public function __construct(string $path = '/usr/sbin/sendmail')
71
-    {
69
+    public function __construct(string $path = '/usr/sbin/sendmail') {
72 70
         $this->path = $path;
73 71
     }
74 72
 
Please login to merge, or discard this patch.
src/Transport/Mail.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 Mail
55 55
  * @package Platine\Mail\Transport
56 56
  */
57
-class Mail implements TransportInterface
58
-{
57
+class Mail implements TransportInterface {
59 58
     /**
60 59
      * {@inheritedoc}
61 60
      */
Please login to merge, or discard this patch.
src/Message.php 1 patch
Braces   +3 added lines, -6 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
 
@@ -369,8 +367,7 @@  discard block
 block discarded – undo
369 367
     /**
370 368
      * {@inheritedoc}
371 369
      */
372
-    public function getHeader(string $name, $default = null)
373
-    {
370
+    public function getHeader(string $name, $default = null) {
374 371
         $this->prepareHeaders();
375 372
 
376 373
         return array_key_exists($name, $this->headers)
Please login to merge, or discard this patch.