Browse Source

return true on ignored errors.

Taylor Otwell 13 years ago
parent
commit
c6e814a6cc
1 changed files with 2 additions and 0 deletions
  1. 2 0
      laravel/error.php

+ 2 - 0
laravel/error.php

@@ -56,6 +56,8 @@ class Error {
 		if (in_array($code, Config::get('error.ignore')))
 		{
 			return static::log($exception);
+
+			return true;
 		}
 
 		static::exception($exception);