I have a class that benefits from the use of constants in its internal implementation, but I would like to limit visibility of these constants. Why doesn\'t PHP permit priva
In that case you will have the same variable throughout all objects and if you want to extend its scope to nested, you can expose a getter method to get its value and restrict variables settings.