Отключение инициализации ErrorHandler
This commit is contained in:
@ -29,7 +29,7 @@ class FrontController
|
||||
|
||||
private function __construct()
|
||||
{
|
||||
// ErrorHandler::init();
|
||||
// \Majestic\Exception\ErrorHandler::init();
|
||||
$this->router = new Router\Router();
|
||||
}
|
||||
|
||||
|
@ -12,7 +12,7 @@ class ErrorHandler
|
||||
|
||||
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)
|
||||
|
Reference in New Issue
Block a user