<?php/** * local storage backnd in temporary folder for testing purpores */classOC_Filestorage_TemporaryextendsOC_Filestorage_Local{publicfunction__construct($arguments){$this->datadir=OC_Helper::tmpFolder();}publicfunctioncleanUp(){OC_Helper::rmdirr($this->datadir);}publicfunction__destruct(){$this->cleanUp();}}