Skip to content

Commit 926f4de

Browse files
committed
Typos In Comments
1 parent 496473f commit 926f4de

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Transport/SendmailTransport.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
/**
2424
* SendmailTransport for sending mail through a Sendmail/Postfix (etc..) binary.
2525
*
26-
* Transport can be instanciated through SendmailTransportFactory or NativeTransportFactory:
26+
* Transport can be instantiated through SendmailTransportFactory or NativeTransportFactory:
2727
*
28-
* - SendmailTransportFactory to use most common sendmail path and recommanded options
28+
* - SendmailTransportFactory to use most common sendmail path and recommended options
2929
* - NativeTransportFactory when configuration is set via php.ini
3030
*
3131
* @author Fabien Potencier <[email protected]>

Transport/Smtp/Stream/SocketStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public function initialize(): void
145145
if ($this->streamContextOptions) {
146146
$options = array_merge($options, $this->streamContextOptions);
147147
}
148-
// do it unconditionnally as it will be used by STARTTLS as well if supported
148+
// do it unconditionally as it will be used by STARTTLS as well if supported
149149
$options['ssl']['crypto_method'] = $options['ssl']['crypto_method'] ?? \STREAM_CRYPTO_METHOD_TLS_CLIENT | \STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT | \STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT;
150150
$streamContext = stream_context_create($options);
151151

0 commit comments

Comments
 (0)