Slim down app.php because php 7 already turns errors into exceptions and php 5.6, well whatever :D

This commit is contained in:
Bernhard Posselt 2016-04-11 20:14:02 +02:00
Родитель 7ed353ded8
Коммит 3e4d3fdffb
1 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -13,16 +13,6 @@
namespace OCA\News\AppInfo;
use Exception;
require_once __DIR__ . '/../vendor/autoload.php';
// Turn all errors into exceptions to combat shitty library behavior
set_error_handler(function ($code, $message) {
if ($code === E_ERROR || $code === E_USER_ERROR) {
throw new Exception($message, $code);
}
});
(new Application)->registerConfig();