error handler now works properly with @

This commit is contained in:
Alexander Makarov
2012-12-26 16:40:25 +04:00
parent 4502d5c6ae
commit 32f34b60b8

View File

@ -77,7 +77,9 @@ class ErrorHandler extends ApplicationComponent
*/
public function handleError($code, $message, $file, $line)
{
throw new \ErrorException($message, 0, $code, $file, $line);
if(error_reporting()!==0) {
throw new \ErrorException($message, 0, $code, $file, $line);
}
}
/**