key = $key; $this->callback = $callback; $this->parameters = $parameters; } /** * Execute the route function. * * @param mixed $route * @param array $parameters * @return Response */ public function call() { $response = null; // The callback may be in array form, meaning it has attached filters or is named. // However, the callback may also simply be a closure. If it is just a closure, // we can execute it here. Otherwise, we will need to evaluate the route for any // filters that need to be called. if (is_callable($this->callback)) { $response = call_user_func_array($this->callback, $this->parameters); } elseif (is_array($this->callback)) { $response = isset($this->callback['before']) ? Filter::call($this->callback['before'], array(), true) : null; if (is_null($response) and isset($this->callback['do'])) { $response = call_user_func_array($this->callback['do'], $this->parameters); } } $response = Response::prepare($response); if (is_array($this->callback) and isset($this->callback['after'])) { Filter::call($this->callback['after'], array($response)); } return $response; } }