mecha-cms / mecha

Minimalist content management system.
https://mecha-cms.com
GNU General Public License v3.0
178 stars 23 forks source link

Rename `DEBUG` to `TEST` #159

Closed taufik-nurrohman closed 3 years ago

taufik-nurrohman commented 3 years ago

DEBUG is constructed by two word: DE·BUG and I don’t like it. TEST would be more appropriate since we also have test() function.

if (defined('TEST') && TEST) {
    test($_SERVER);
    exit;
}