Browse Source

added comments to ioc container class.

Taylor Otwell 13 years ago
parent
commit
1c9798e980
1 changed files with 27 additions and 11 deletions
  1. 27 11
      laravel/container.php

+ 27 - 11
laravel/container.php

@@ -21,6 +21,14 @@ class IoC {
 
 
 	/**
 	/**
 	 * Magic Method for calling methods on the active container instance.
 	 * Magic Method for calling methods on the active container instance.
+	 *
+	 * <code>
+	 *		// Call the "resolve" method on the active container
+	 *		$instance = IoC::resolve('laravel.routing.router');
+	 *
+	 *		// Call the "instance" method on the active container
+	 *		IoC::instance('mailer', new Mailer);
+	 * </code>
 	 */
 	 */
 	public static function __callStatic($method, $parameters)
 	public static function __callStatic($method, $parameters)
 	{
 	{
@@ -59,6 +67,14 @@ class Container {
 	/**
 	/**
 	 * Register an object and its resolver.
 	 * Register an object and its resolver.
 	 *
 	 *
+	 * The IoC container instance is always passed to the resolver, allowing the
+	 * nested resolution of other objects from the container.
+	 *
+	 * <code>
+	 *		// Register an object and its resolver
+	 *		IoC::container()->register('mailer', function($c) {return new Mailer;});
+	 * </code>
+	 *
 	 * @param  string   $name
 	 * @param  string   $name
 	 * @param  Closure  $resolver
 	 * @param  Closure  $resolver
 	 * @return void
 	 * @return void
@@ -100,6 +116,11 @@ class Container {
 	 * This method allows you to register an already existing object instance
 	 * This method allows you to register an already existing object instance
 	 * with the container to be managed as a singleton instance.
 	 * with the container to be managed as a singleton instance.
 	 *
 	 *
+	 * <code>
+	 *		// Register an instance as a singleton in the container
+	 *		IoC::container()->instance('mailer', new Mailer);
+	 * </code>
+	 *
 	 * @param  string  $name
 	 * @param  string  $name
 	 * @param  mixed   $instance
 	 * @param  mixed   $instance
 	 * @return void
 	 * @return void
@@ -110,7 +131,12 @@ class Container {
 	}
 	}
 
 
 	/**
 	/**
-	 * Resolve an object.
+	 * Resolve an object instance from the container.
+	 *
+	 * <code>
+	 *		// Get an instance of the "mailer" object registered in the container
+	 *		$mailer = IoC::container()->resolve('mailer');
+	 * </code>
 	 *
 	 *
 	 * @param  string  $name
 	 * @param  string  $name
 	 * @return mixed
 	 * @return mixed
@@ -129,14 +155,4 @@ class Container {
 		return (isset($this->registry[$name]['singleton'])) ? $this->singletons[$name] = $object : $object;
 		return (isset($this->registry[$name]['singleton'])) ? $this->singletons[$name] = $object : $object;
 	}
 	}
 
 
-	/**
-	 * Magic Method for resolving classes out of the IoC container.
-	 */
-	public function __get($key)
-	{
-		if ($this->registered($key)) return $this->resolve($key);
-
-		throw new \Exception("Attempting to resolve undefined class [$key].");
-	}
-
 }
 }