definedClassA::definedProtectedMethod PHP Method

definedProtectedMethod() protected method

protected definedProtectedMethod ( )
    protected function definedProtectedMethod()
    {
    }

Usage Example

Example #1
0
 function x()
 {
     parent::undefinedMethod();
     parent::definedPrivateMethod();
     parent::definedPublicMethod();
     parent::definedProtectedMethod();
 }