Horde_Data_Base::cleanup PHP Method

cleanup() public method

Removes any uploaded and moved files.
public cleanup ( ) : mixed
return 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);
        }
    }