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 class internal methods) ?
|
|
A Sample Abstract Class
This would run fine
Bar would return Error
Songo would return Error
Enforcer Class
|
|||||||||||||||||||||
|
|
As far as I know "NO" :) You could try other ways such as abstract methods:
or static members:
Source: http://www.sitepoint.com/forums/showthread.php?629565-Abstract-constants |
||||
|
|
Unfortunately not... a constant is exactly what it says on the tin, constant. Once defined it can't be redefined, so in that way, it is impossible to require its definition through PHP's abstract inheritance or interfaces. However... you could check to see if the constant is defined in the parent class's constructor. If it doesn't, throw an Exception.
This is the best way I can think of doing this from your initial description. |
|||
|
|