From 512afc0a6ff04081c06a597ad8c2ca6e6f59a897 Mon Sep 17 00:00:00 2001 From: Sherwin Gaddis Date: Tue, 3 May 2022 16:50:07 -0400 Subject: [PATCH] PHPStorm suggested changing this the properties to protected (#5273) --- library/ESign/DbRow/Signable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/ESign/DbRow/Signable.php b/library/ESign/DbRow/Signable.php index a568c5e4725..62b6d5b85ac 100644 --- a/library/ESign/DbRow/Signable.php +++ b/library/ESign/DbRow/Signable.php @@ -32,8 +32,8 @@ abstract class DbRow_Signable implements SignableIF { private $_signatures = array(); - private $_tableId = null; - private $_tableName = null; + protected $_tableId = null; + protected $_tableName = null; private $_verification = null; public function __construct($tableId, $tableName)