PHP - Inheritance and Polymorphism
Identify the problem in this PHP code:
class ParentClass {
final public function display() {
echo "Parent display";
}
}
class ChildClass extends ParentClass {
public function display() {
echo "Child display";
}
}