Merge pull request #1471 from owncloud/temp-storage-call-parent-ctor-master
Temp storage call parent ctor master
This commit is contained in:
commit
69fd3f42e5
1 changed files with 2 additions and 2 deletions
|
@ -9,11 +9,11 @@
|
|||
namespace OC\Files\Storage;
|
||||
|
||||
/**
|
||||
* local storage backnd in temporary folder for testing purpores
|
||||
* local storage backend in temporary folder for testing purpose
|
||||
*/
|
||||
class Temporary extends Local{
|
||||
public function __construct($arguments) {
|
||||
$this->datadir=\OC_Helper::tmpFolder();
|
||||
parent::__construct(array('datadir' => \OC_Helper::tmpFolder()));
|
||||
}
|
||||
|
||||
public function cleanUp() {
|
||||
|
|
Loading…
Reference in a new issue