<?php
class A
{
public static function foo()
{
// some action
}
public static function __callStatic($method, $args)
{
self::foo();
static::$method($args);
}
}
class B extends A
{
public static function bar(){}
}
I search for php public static function handler, i try __callStatic() but its calling only with private and protected methods Please help
