route(); $response = (is_null($route)) ? Response::error('404') : $route->call(); } else { $response = Response::prepare($response); } // -------------------------------------------------------------- // Execute the global "after" filter. // -------------------------------------------------------------- Routing\Filter::call('after', array($response)); // -------------------------------------------------------------- // Stringify the response. // -------------------------------------------------------------- $response->content = (string) $response->content; // -------------------------------------------------------------- // Close the session. // -------------------------------------------------------------- if (Config::get('session.driver') != '') { Session::close(); } // -------------------------------------------------------------- // Send the response to the browser. // -------------------------------------------------------------- $response->send();