@@ -182,18 +182,18 @@ discard block |
||
182 | 182 | $this->message = $message; |
183 | 183 | |
184 | 184 | $this->connect() |
185 | - ->ehlo(); |
|
185 | + ->ehlo(); |
|
186 | 186 | |
187 | 187 | if ($this->tls) { |
188 | 188 | $this->starttls() |
189 | - ->ehlo(); |
|
189 | + ->ehlo(); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | $this->authLogin() |
193 | - ->mailFrom() |
|
194 | - ->rcptTo() |
|
195 | - ->data() |
|
196 | - ->quit(); |
|
193 | + ->mailFrom() |
|
194 | + ->rcptTo() |
|
195 | + ->data() |
|
196 | + ->quit(); |
|
197 | 197 | |
198 | 198 | if (is_resource($this->smtp)) { |
199 | 199 | return fclose($this->smtp); |
@@ -221,11 +221,11 @@ discard block |
||
221 | 221 | } |
222 | 222 | |
223 | 223 | /** |
224 | - * Connect to server |
|
225 | - * @return $this |
|
226 | - * @throws SMTPException |
|
227 | - * @throws SMTPRetunCodeException |
|
228 | - */ |
|
224 | + * Connect to server |
|
225 | + * @return $this |
|
226 | + * @throws SMTPException |
|
227 | + * @throws SMTPRetunCodeException |
|
228 | + */ |
|
229 | 229 | protected function connect(): self |
230 | 230 | { |
231 | 231 | $host = $this->ssl ? 'ssl://' . $this->host : $this->host; |
@@ -257,14 +257,14 @@ discard block |
||
257 | 257 | } |
258 | 258 | |
259 | 259 | /** |
260 | - * STREAM_CRYPTO_METHOD_TLS_CLIENT is quite the mess ... |
|
261 | - * |
|
262 | - * - On PHP <5.6 it doesn't even mean TLS, but SSL 2.0, and there's no option to use actual TLS |
|
263 | - * - On PHP 5.6.0-5.6.6, >=7.2 it means negotiation with any of TLS 1.0, 1.1, 1.2 |
|
264 | - * - On PHP 5.6.7-7.1.* it means only TLS 1.0 |
|
265 | - * |
|
266 | - * We want the negotiation, so we'll force it below ... |
|
267 | - */ |
|
260 | + * STREAM_CRYPTO_METHOD_TLS_CLIENT is quite the mess ... |
|
261 | + * |
|
262 | + * - On PHP <5.6 it doesn't even mean TLS, but SSL 2.0, and there's no option to use actual TLS |
|
263 | + * - On PHP 5.6.0-5.6.6, >=7.2 it means negotiation with any of TLS 1.0, 1.1, 1.2 |
|
264 | + * - On PHP 5.6.7-7.1.* it means only TLS 1.0 |
|
265 | + * |
|
266 | + * We want the negotiation, so we'll force it below ... |
|
267 | + */ |
|
268 | 268 | if (is_resource($this->smtp)) { |
269 | 269 | if ( |
270 | 270 | !stream_socket_enable_crypto( |
@@ -57,8 +57,7 @@ |
||
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 | */ |
@@ -86,7 +86,7 @@ |
||
86 | 86 | )); |
87 | 87 | } |
88 | 88 | |
89 | - $content = (string)$message; |
|
89 | + $content = (string) $message; |
|
90 | 90 | $file = $this->path . date('YmdHis') . '-' . md5(uniqid()) . '.txt'; |
91 | 91 | if (!file_put_contents($file, $content)) { |
92 | 92 | throw new FileTransportException(sprintf( |
@@ -55,8 +55,7 @@ discard block |
||
55 | 55 | * @class File |
56 | 56 | * @package Platine\Mail\Transport |
57 | 57 | */ |
58 | -class File implements TransportInterface |
|
59 | -{ |
|
58 | +class File 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|null $path |
69 | 68 | */ |
70 | - public function __construct(?string $path = null) |
|
71 | - { |
|
69 | + public function __construct(?string $path = null) { |
|
72 | 70 | if ($path === null) { |
73 | 71 | $path = sys_get_temp_dir(); |
74 | 72 | } |
@@ -78,7 +78,7 @@ |
||
78 | 78 | */ |
79 | 79 | public function send(MessageInterface $message): bool |
80 | 80 | { |
81 | - $content = (string)$message; |
|
81 | + $content = (string) $message; |
|
82 | 82 | |
83 | 83 | $from = $message->getFrom(); |
84 | 84 |
@@ -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 |
@@ -55,8 +55,7 @@ discard block |
||
55 | 55 | * @class Mailer |
56 | 56 | * @package Platine\Mail |
57 | 57 | */ |
58 | -class Mailer |
|
59 | -{ |
|
58 | +class Mailer { |
|
60 | 59 | /** |
61 | 60 | * The mail transport instance |
62 | 61 | * @var TransportInterface |
@@ -67,8 +66,7 @@ discard block |
||
67 | 66 | * Create new instance |
68 | 67 | * @param TransportInterface|null $transport |
69 | 68 | */ |
70 | - public function __construct(?TransportInterface $transport = null) |
|
71 | - { |
|
69 | + public function __construct(?TransportInterface $transport = null) { |
|
72 | 70 | $this->transport = $transport ?? new NullTransport(); |
73 | 71 | } |
74 | 72 |
@@ -53,8 +53,7 @@ |
||
53 | 53 | * @class MessageInterface |
54 | 54 | * @package Platine\Mail |
55 | 55 | */ |
56 | -interface MessageInterface |
|
57 | -{ |
|
56 | +interface MessageInterface { |
|
58 | 57 | /** |
59 | 58 | * Set sender |
60 | 59 | * @param string $email |
@@ -40,6 +40,5 @@ |
||
40 | 40 | * @class MailException |
41 | 41 | * @package Platine\Mail\Exception |
42 | 42 | */ |
43 | -class MailException extends Exception |
|
44 | -{ |
|
43 | +class MailException extends Exception { |
|
45 | 44 | } |
@@ -38,6 +38,5 @@ |
||
38 | 38 | * @class SMTPException |
39 | 39 | * @package Platine\Mail\Exception |
40 | 40 | */ |
41 | -class SMTPSecureException extends SMTPException |
|
42 | -{ |
|
41 | +class SMTPSecureException extends SMTPException { |
|
43 | 42 | } |
@@ -40,6 +40,5 @@ |
||
40 | 40 | * @class FileTransportException |
41 | 41 | * @package Platine\Mail\Exception |
42 | 42 | */ |
43 | -class FileTransportException extends Exception |
|
44 | -{ |
|
43 | +class FileTransportException extends Exception { |
|
45 | 44 | } |
@@ -38,16 +38,14 @@ |
||
38 | 38 | * @class SMTPRetunCodeException |
39 | 39 | * @package Platine\Mail\Exception |
40 | 40 | */ |
41 | -class SMTPRetunCodeException extends SMTPException |
|
42 | -{ |
|
41 | +class SMTPRetunCodeException extends SMTPException { |
|
43 | 42 | /** |
44 | 43 | * Create new instance |
45 | 44 | * @param int $expected |
46 | 45 | * @param int $received |
47 | 46 | * @param string|null $serverMessage |
48 | 47 | */ |
49 | - public function __construct(int $expected, int $received, ?string $serverMessage = null) |
|
50 | - { |
|
48 | + public function __construct(int $expected, int $received, ?string $serverMessage = null) { |
|
51 | 49 | $message = sprintf( |
52 | 50 | 'Unexpected return code expected %d, but got %d', |
53 | 51 | $expected, |