From 1606b7e9e576204ed1fb5aa35b796a54364948a7 Mon Sep 17 00:00:00 2001 From: Erich Date: Mon, 2 Jan 2017 12:10:40 +1000 Subject: [PATCH] allow descendant classes to access the cache array this makes this class into a more flexible base for other classes to inherit from. Background [conversation with Coleman here](http://civicrm.stackexchange.com/questions/16434/private-or-protected-class-properties/16483?noredirect=1#comment18299_16483) --- CRM/Utils/Cache/ArrayCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/Cache/ArrayCache.php b/CRM/Utils/Cache/ArrayCache.php index 95ac6d2481..2622554330 100644 --- a/CRM/Utils/Cache/ArrayCache.php +++ b/CRM/Utils/Cache/ArrayCache.php @@ -39,7 +39,7 @@ class CRM_Utils_Cache_Arraycache implements CRM_Utils_Cache_Interface { /** * The cache storage container, an in memory array by default */ - private $_cache; + protected $_cache; /** * Constructor. -- 2.25.1