Отключение инициализации ErrorHandler

This commit is contained in:
2014-06-19 19:17:28 +04:00
parent 0057d6ff7c
commit 61be1700ee
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class FrontController
private function __construct() private function __construct()
{ {
// ErrorHandler::init(); // \Majestic\Exception\ErrorHandler::init();
$this->router = new Router\Router(); $this->router = new Router\Router();
} }

View File

@ -12,7 +12,7 @@ class ErrorHandler
static public function init() static public function init()
{ {
set_error_handler(array('ErrorHandler', 'error_handler')); set_error_handler(array('Majestic\Exception\ErrorHandler', 'error_handler'));
} }
static public function error_handler($errno, $errstr, $errfile, $errline) static public function error_handler($errno, $errstr, $errfile, $errline)