From fdad58383b050fdd0ea95638d2c965b01b44ba94 Mon Sep 17 00:00:00 2001 From: Andrew Ellis Date: Thu, 3 May 2012 11:14:33 -0600 Subject: [PATCH] cleaned up phpdoc and removed as it is not used --- laravel/routing/route.php | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/laravel/routing/route.php b/laravel/routing/route.php index e1cc663b..a297d0d3 100644 --- a/laravel/routing/route.php +++ b/laravel/routing/route.php @@ -47,11 +47,10 @@ class Route { /** * Create a new Route instance. * - * @param string $method - * @param string $uri - * @param array $action - * @param array $parameters - * @return void + * @param string $method + * @param string $uri + * @param array $action + * @param array $parameters */ public function __construct($method, $uri, $action, $parameters = array()) { @@ -67,18 +66,17 @@ public function __construct($method, $uri, $action, $parameters = array()) // We'll set the parameters based on the number of parameters passed // compared to the parameters that were needed. If more parameters // are needed, we'll merge in defaults. - $this->parameters($uri, $action, $parameters); + $this->parameters($action, $parameters); } /** * Set the parameters array to the correct value. * - * @param string $uri * @param array $action * @param array $parameters * @return void */ - protected function parameters($uri, $action, $parameters) + protected function parameters($action, $parameters) { $defaults = (array) array_get($action, 'defaults'); @@ -114,7 +112,7 @@ public function call() // We always return a Response instance from the route calls, so // we'll use the prepare method on the Response class to make - // sure we have a valid Response isntance. + // sure we have a valid Response instance. $response = Response::prepare($response); Filter::run($this->filters('after'), array($response)); @@ -252,7 +250,7 @@ public function is($name) /** * Register a controller with the router. * - * @param string|array $controller + * @param string|array $controllers * @param string|array $defaults * @return void */ @@ -394,4 +392,4 @@ public static function forward($method, $uri) return Router::route(strtoupper($method), $uri)->call(); } -} \ No newline at end of file +}