I have a classB which extends classA.
classB
classA
In both classA and classB I define the method fooBar
fooBar
parent::fooBar();
Straight from the manual:
The ... double colon, is a token that allows access to ... overridden properties or methods of a class. ... Example #3 Calling a parent's method myFunc(); ?>
The ... double colon, is a token that allows access to ... overridden properties or methods of a class.
...
myFunc(); ?>