Commit 7a963197 authored by Taylor Otwell's avatar Taylor Otwell

dont return 404 error on null return from existing route.

parent e55f9e9f
...@@ -111,15 +111,6 @@ class Route { ...@@ -111,15 +111,6 @@ class Route {
} }
} }
// If we still don't have a response, we're out of options and
// will use the 404 response. We will still let the response
// hit the after filter in case the developer is doing any
// logging or other work where every response is needed.
if (is_null($response))
{
$response = Response::error('404');
}
// The after filter and the framework expects all responses to // The after filter and the framework expects all responses to
// be instances of the Response class. If the route did not // be instances of the Response class. If the route did not
// return an instsance of Response, we will make on now. // return an instsance of Response, we will make on now.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment