return true on ignored errors.

This commit is contained in:
Taylor Otwell 2012-01-24 13:03:12 -06:00
parent b8f17bb82d
commit c6e814a6cc
1 changed files with 2 additions and 0 deletions

View File

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