1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-28 23:40:41 +02:00

Flextype Core: remove old Error Handler! #117

This commit is contained in:
Awilum
2019-06-07 21:05:52 +03:00
parent 326001d30c
commit 3eef3293bc
2 changed files with 6 additions and 18 deletions

View File

@@ -24,7 +24,6 @@
"flextype-components/cookie" : "1.2.0",
"flextype-components/date" : "1.0.0",
"flextype-components/debug" : "1.0.0",
"flextype-components/errorhandler" : "1.0.5",
"flextype-components/filesystem" : "2.0.3",
"flextype-components/i18n" : "1.2.0",
"flextype-components/number" : "1.1.0",

View File

@@ -78,11 +78,6 @@ $flextype['csrf'] = function ($container) {
*/
$app->add($flextype->get('csrf'));
/**
* as
*/
$app->add(new \Zeuxisoo\Whoops\Provider\Slim\WhoopsMiddleware($app));
/**
* Add emitter service to Flextype container
*/
@@ -147,22 +142,16 @@ function_exists('mb_internal_encoding') and mb_internal_encoding($flextype['regi
// Display Errors
if ($flextype['registry']->get('settings.errors.display')) {
//define('DEVELOPMENT', true);
error_reporting(-1);
/**
* Add WhoopsMiddleware
*/
$app->add(new \Zeuxisoo\Whoops\Provider\Slim\WhoopsMiddleware($app));
} else {
//define('DEVELOPMENT', false);
error_reporting(0);
}
// Create directory for logs
!Filesystem::has(LOGS_PATH) and Filesystem::createDir(LOGS_PATH);
// Set Error handler
//set_error_handler('Flextype\Component\ErrorHandler\ErrorHandler::error');
//register_shutdown_function('Flextype\Component\ErrorHandler\ErrorHandler::fatal');
//set_exception_handler('Flextype\Component\ErrorHandler\ErrorHandler::exception');
// Set default timezone
date_default_timezone_set($flextype['registry']->get('settings.timezone'));