A::f PHP Method

f() private method

private f ( )
    private function f()
    {
        self::e();
    }

Same methods

A::f ( ) : boolean
A::f ( ) : integer
A::f ( ) : self[]

Usage Example

 public function __construct()
 {
     parent::A();
     // NOK
     parent::f();
     // OK
 }
All Usage Examples Of A::f