improved error check on shutdown

This commit is contained in:
Steffen Schröder
2014-05-03 22:26:49 +02:00
parent 334892c287
commit ca7d5863bf
2 changed files with 15 additions and 9 deletions

View File

@ -302,11 +302,7 @@ class ManiaControl implements CommandListener, TimerListener {
}
}
// Check and Trigger Fatal Errors
$error = error_get_last();
if ($error && ($error['type'] & E_FATAL)) {
$this->errorHandler->handleError($error['type'], $error['message'], $error['file'], $error['line']);
}
$this->errorHandler->handleShutdown();
// Disable Garbage Collector
$this->collectGarbage();