Parent class has variable X and display method to display it. Extended child class has variable X and display method. Now we need to display value of Parent class variable in child class display method without using super keyword. How to acheive this?
$display(Parent::X)
Also see: Misnomer in the term "child class"