Skip to content

Commit

Permalink
private -> protected
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jun 5, 2015
1 parent e83258c commit 5b95144
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Expand Up @@ -51,7 +51,7 @@ class Horde_Kolab_Storage_Data_Query_History_Base
*
* @var string Cached history prefix string
*/
private $_prefix;
protected $_prefix;

/**
* Constructor.
Expand Down
Expand Up @@ -33,14 +33,14 @@ class Horde_Kolab_Storage_Data_Query_Preferences_Base
*
* @var Horde_Kolab_Storage_Data
*/
private $_data;
protected $_data;

/**
* The cached preference mapping.
*
* @var array
*/
private $_mapping;
protected $_mapping;

/**
* Constructor.
Expand Down
Expand Up @@ -307,18 +307,18 @@ public function testModifyActionOnObjectRecreation()
$this->assertEquals(true, $found_add);
}

private function _getData()
protected function _getData()
{
return $this->_getFolder()->getData('INBOX/History');
}

private function _getDataQuery()
protected function _getDataQuery()
{
return $this->_getData()
->getQuery(Horde_Kolab_Storage_Data::QUERY_HISTORY);
}

private function _getFolder()
protected function _getFolder()
{
return $this->_getFolderBase(
array(
Expand All @@ -336,7 +336,7 @@ private function _getFolder()
);
}

private function _getFolderBase($additional_folders)
protected function _getFolderBase($additional_folders)
{
$this->history = new Horde_History_Mock('test');
return $this->getDataStorage(
Expand Down

0 comments on commit 5b95144

Please sign in to comment.