Browse Source

Removed comment bloat from Route\Filter.

Taylor Otwell 13 years ago
parent
commit
654c4aa85f
1 changed files with 0 additions and 3 deletions
  1. 0 3
      system/route/filter.php

+ 0 - 3
system/route/filter.php

@@ -33,9 +33,6 @@ class Filter {
 
 			$response = call_user_func_array(static::$filters[$filter], $parameters);
 
-			// If overriding is set to true and the filter returned a response, return that response. 
-			// Overriding allows for convenient halting of the request flow for things like
-			// authentication, CSRF protection, etc.
 			if ( ! is_null($response) and $override)
 			{
 				return $response;