FOF30\Utils\Phpfunc::__call PHP Метод

__call() публичный Метод

Magic call to intercept any function pass to it.
public __call ( string $func, array $args ) : mixed
$func string The function to call.
$args array Arguments passed to the function.
Результат mixed The result of the function call.
    public function __call($func, $args)
    {
        return call_user_func_array($func, $args);
    }
Phpfunc