Skip to content

Commit

Permalink
Add missing properties to library classes
Browse files Browse the repository at this point in the history
Ported from Shardj/zf1-future#291

PHP 8.2: Dynamic Properties are deprecated fix

Reference: https://php.watch/versions/8.2/dynamic-properties-deprecated
  • Loading branch information
hungtrinh authored and falkenhawk committed Jan 3, 2024
1 parent 5541ba3 commit 4fcafcf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions library/Zend/Crypt/Rsa/Key.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
*/
class Zend_Crypt_Rsa_Key implements Countable
{
/**
* @var string
*/
protected $_certificateString;

/**
* @var string
*/
Expand Down

0 comments on commit 4fcafcf

Please sign in to comment.