improving class comments.

This commit is contained in:
Taylor Otwell
2011-08-13 22:33:43 -05:00
parent f346dae401
commit 450b6951af
3 changed files with 6 additions and 11 deletions

View File

@@ -49,10 +49,7 @@ class Filter {
// "Before" filters may override the request cycle. For example, an authentication
// filter may redirect a user to a login view if they are not logged in. Because of
// this, we will return the first filter response if overriding is enabled.
if ( ! is_null($response) and $override)
{
return $response;
}
if ( ! is_null($response) and $override) return $response;
}
}