Browse Source

added shortcut for registering controllers in the ioc container.

Taylor Otwell 13 years ago
parent
commit
d50638cc75
1 changed files with 12 additions and 0 deletions
  1. 12 0
      laravel/ioc.php

+ 12 - 0
laravel/ioc.php

@@ -70,6 +70,18 @@ class IoC {
 		static::$singletons[$name] = $instance;
 	}
 
+	/**
+	 * Register a controller with the IoC container.
+	 *
+	 * @param  string   $name
+	 * @param  Closure  $resolver
+	 * @return void
+	 */
+	public static function controller($name, $resolver)
+	{
+		static::register("controller: {$name}", $resolver);
+	}
+
 	/**
 	 * Resolve a core Laravel class from the container.
 	 *