1abstract class Hello {
2 const CONSTANT_1 = 'abstract'; // Make Abstract
3 const CONSTANT_2 = 'abstract'; // Make Abstract
4 const CONSTANT_3 = 'Hello World'; // Normal Constant
5 function __construct() {
6 Enforcer::__add(__CLASS__, get_called_class());
7 }
8}