I noticed that you can\'t have abstract constants in PHP.
Is there a way I can force a child class to define a constant (which I need to use in one of the abstract c
PHP Interfaces support constants. It's not as ideal because you would have to remember to implement the interface on every child class so it kind of defeats the purpose partially.