From 7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Thu, 30 Dec 2021 11:48:48 +0300 Subject: [PATCH] release version 2.1.3 --- CHANGELOG.md | 2 +- src/Mailer.php | 5 ++--- src/Message.php | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c3d83e..c7b4a0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Yii Framework 2 swiftmailer extension Change Log ================================================ -2.1.3 under development +2.1.3 December 30, 2021 ----------------------- - Enh #91: Clone signers when cloning `Message`, emit warning when `opendkim` is used (WinterSilence) diff --git a/src/Mailer.php b/src/Mailer.php index d06ec46..d4641b2 100644 --- a/src/Mailer.php +++ b/src/Mailer.php @@ -68,9 +68,8 @@ use yii\mail\BaseMailer; * * @see http://swiftmailer.org * - * @property array|\Swift_Mailer $swiftMailer Swift mailer instance or array configuration. This property is - * read-only. - * @property array|\Swift_Transport $transport This property is read-only. + * @property-read \Swift_Mailer $swiftMailer Swift mailer instance. + * @property-read \Swift_Transport $transport * * @author Paul Klimov * @since 2.0 diff --git a/src/Message.php b/src/Message.php index f5e5027..15ff8a3 100644 --- a/src/Message.php +++ b/src/Message.php @@ -26,8 +26,8 @@ use yii\mail\BaseMessage; * @property string $readReceiptTo Receipt receive email addresses. Note that the type of this property * differs in getter and setter. See [[getReadReceiptTo()]] and [[setReadReceiptTo()]] for details. * @property string $returnPath The bounce email address. - * @property-write array|callable|\Swift_Signer $signature Signature specification. See [[addSignature()]] - * for details on how it should be specified. + * @property-write array|callable|\Swift_Signer $signature Signature specification. See [[addSignature()]] for + * details on how it should be specified. * @property-read \Swift_Message $swiftMessage Swift message instance. * * @author Paul Klimov