summaryrefslogtreecommitdiffstats
path: root/lib/filestorage/temporary.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/filestorage/temporary.php')
-rw-r--r--lib/filestorage/temporary.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/filestorage/temporary.php b/lib/filestorage/temporary.php
index 8f2373c8e95..876ba045a63 100644
--- a/lib/filestorage/temporary.php
+++ b/lib/filestorage/temporary.php
@@ -3,15 +3,15 @@
* local storage backnd in temporary folder for testing purpores
*/
class OC_Filestorage_Temporary extends OC_Filestorage_Local{
- public function __construct($arguments){
+ public function __construct($arguments) {
$this->datadir=OC_Helper::tmpFolder();
}
- public function cleanUp(){
+ public function cleanUp() {
OC_Helper::rmdirr($this->datadir);
}
- public function __destruct(){
+ public function __destruct() {
$this->cleanUp();
}
}