Thumb::__call PHP Method

__call() public method

Makes all public methods of the result object available to the thumb class
public __call ( string $method, mixed $arguments ) : mixed
$method string
$arguments mixed
return mixed
    public function __call($method, $arguments)
    {
        if (method_exists($this->result, $method)) {
            return call_user_func_array(array($this->result, $method), $arguments);
        }
    }