autoloader update, config master, db io minor fixes

Various not needed isset checks removed
autoloader correctly checks that "LIB" is at the end of the path only
This commit is contained in:
Clemens Schwaighofer
2019-09-19 18:54:46 +09:00
parent 4508692330
commit 8ade113070
5 changed files with 22 additions and 21 deletions

View File

@@ -95,9 +95,8 @@
namespace CoreLibs;
// define check vars for the flags we can have
/** @internal */
define('CLASS_STRICT_MODE', 1);
define('CLASS_OFF_COMPATIBLE_MODE', 2);
const CLASS_STRICT_MODE = 1;
const CLASS_OFF_COMPATIBLE_MODE = 2;
/** Basic core class declaration */
class Basic