@@ -54,8 +54,7 @@ |
||
| 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 | */ |
@@ -55,8 +55,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -54,8 +54,7 @@ |
||
| 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 | */ |
@@ -54,8 +54,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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) |