definedClassA::definedMethod PHP Méthode

definedMethod() public méthode

public definedMethod ( )
    function definedMethod()
    {
    }

Usage Example

 function x()
 {
     parent::undefinedMethod();
     parent::definedMethod();
 }