Thumb::__call PHP 메소드

__call() 공개 메소드

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