added unit tests.

This commit is contained in:
Taylor Otwell
2011-09-04 23:55:28 -05:00
parent cb8e8194ce
commit 018d25c895
6 changed files with 95 additions and 6 deletions

View File

@@ -39,14 +39,14 @@ class Container {
*
* @var array
*/
private $singletons = array();
public $singletons = array();
/**
* The registered dependencies.
*
* @var array
*/
private $resolvers = array();
protected $resolvers = array();
/**
* Create a new IoC container instance.