From 844c1fc93307a342957ea518acf0ba5355ba4c5b Mon Sep 17 00:00:00 2001 From: Fonata Date: Wed, 8 Dec 2021 18:53:21 +0100 Subject: [PATCH] Declare object variable $Smtp for PHP 8.2 compatibility In PHP 8.2 dynamic property are deprecated. --- test/PHPMailer/PHPMailerTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/PHPMailer/PHPMailerTest.php b/test/PHPMailer/PHPMailerTest.php index 5a69ed59..90bb1865 100644 --- a/test/PHPMailer/PHPMailerTest.php +++ b/test/PHPMailer/PHPMailerTest.php @@ -23,6 +23,8 @@ use PHPMailer\Test\SendTestCase; */ final class PHPMailerTest extends SendTestCase { + private $Smtp; + /** * Test low priority. */