From 4fcafcf647f653a442712f35554361660c7164b7 Mon Sep 17 00:00:00 2001 From: hungtd Date: Wed, 23 Nov 2022 22:46:28 +0700 Subject: [PATCH] Add missing properties to library classes Ported from Shardj/zf1-future#291 PHP 8.2: Dynamic Properties are deprecated fix Reference: https://php.watch/versions/8.2/dynamic-properties-deprecated --- library/Zend/Crypt/Rsa/Key.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/library/Zend/Crypt/Rsa/Key.php b/library/Zend/Crypt/Rsa/Key.php index b1019d7..58b31f4 100644 --- a/library/Zend/Crypt/Rsa/Key.php +++ b/library/Zend/Crypt/Rsa/Key.php @@ -28,6 +28,11 @@ */ class Zend_Crypt_Rsa_Key implements Countable { + /** + * @var string + */ + protected $_certificateString; + /** * @var string */