Dotink\Parody\Quip::__callStatic PHP Method

__callStatic() public static method

Static calls are always looked up on the most recently instantiated Quip, so if you need to mimick their functionality you should create a mime and add them first.
public static __callStatic ( string $method, array $args ) : mixed
$method string The static method we are trying to call
$args array The arguments that were passed to the method
return mixed The value that the method should provide with matching expectations
    public static function __callStatic($method, $args)
    {
        $called_class = self::qualify(get_called_class());
        $object = self::$objects[$called_class];
        return call_user_func_array([$object, $method], $args);
    }