B::g PHP Method

g() abstract public method

abstract public g ( )
    abstract function g();

Usage Example

Example #1
0
class A
{
    static function f()
    {
        class B
        {
            static function g()
            {
                echo __METHOD__;
            }
        }
        B::g();
    }
}
All Usage Examples Of B::g