Skip to content

Commit

Permalink
Make these private so we can extend this class.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Apr 27, 2017
1 parent 0a9f389 commit e733563
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions components/lib/Components/Component/Factory.php
Expand Up @@ -32,42 +32,42 @@ class Components_Component_Factory
*
* @var Components_Config
*/
private $_config;
protected $_config;

/**
* The factory for PEAR handlers.
*
* @var Components_Factory
*/
private $_factory;
protected $_factory;

/**
* The HTTP client for remote access.
*
* @var Horde_Http_Client
*/
private $_client;
protected $_client;

/**
* The first source component generated
*
* @var Components_Component
*/
private $_first_source;
protected $_first_source;

/**
* The git root path.
*
* @var Components_Helper_Root
*/
private $_git_root;
protected $_git_root;

/**
* The resolver instance.
*
* @var Components_Component_Resolver
*/
private $_resolver;
protected $_resolver;

/**
* Constructor.
Expand Down Expand Up @@ -340,4 +340,4 @@ public function createThemeContentList($package_xml_dir)
)
);
}
}
}

0 comments on commit e733563

Please sign in to comment.