I\'ve done lots and lots of code in PHP that is object-oriented, but up until now, all of my classes have been, \"singular\", I suppose you can call it. I am in the process
You should look into the concept of Late Static Binding in PHP. This allows you to access a static constant or function from the class that was called.