Horde_Data_Base::cleanup PHP 메소드

cleanup() 공개 메소드

Removes any uploaded and moved files.
public cleanup ( ) : mixed
리턴 mixed If callback called, the return value of this call. This should be the value of the first import step.
    public function cleanup()
    {
        $this->storage->clear();
        if ($this->_cleanupCallback) {
            return call_user_func($this->_cleanupCallback);
        }
    }