Fix a docblock in the controller class.

This commit is contained in:
Taylor Otwell 2011-11-30 08:52:40 -06:00
parent 7e33b4f852
commit 958efea5bd
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ public static function call($destination, $parameters = array())
/** /**
* Resolve a controller name to a controller instance. * Resolve a controller name to a controller instance.
* *
* @param Container $container * @param string $container
* @param string $controller * @param string $controller
* @return Controller * @return Controller
*/ */
@ -251,4 +251,4 @@ public function __get($key)
throw new \OutOfBoundsException("Attempting to access undefined property [$key] on controller."); throw new \OutOfBoundsException("Attempting to access undefined property [$key] on controller.");
} }
} }