Nestable\NestableTrait::__callStatic PHP Method

__callStatic() public static method

Create new instance and call the method.
public static __callStatic ( array $method, array $args ) : mixed
$method array
$args array
return mixed
    public static function __callStatic($method, $args)
    {
        return call_user_func_array([new static(), $method], $args);
    }