summaryrefslogtreecommitdiffstats
path: root/lib/filestorage.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-07-20 17:51:50 +0200
committerRobin Appelman <icewind@owncloud.com>2012-07-20 17:58:05 +0200
commit48306a3c4f708b80143757acbe9b270be476aab4 (patch)
tree07aa5b940a9126a20892a150139dee347d4cbe75 /lib/filestorage.php
parent0e111e1a17140a8a42a3dbf2ecce41e424b2afab (diff)
downloadnextcloud-server-48306a3c4f708b80143757acbe9b270be476aab4.tar.gz
nextcloud-server-48306a3c4f708b80143757acbe9b270be476aab4.zip
fix unused variables
Diffstat (limited to 'lib/filestorage.php')
-rw-r--r--lib/filestorage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filestorage.php b/lib/filestorage.php
index 71ef4aed00b..e786127d525 100644
--- a/lib/filestorage.php
+++ b/lib/filestorage.php
@@ -24,7 +24,7 @@
* Provde a common interface to all different storage options
*/
abstract class OC_Filestorage{
- public function __construct($parameters){}
+ abstract public function __construct($parameters);
abstract public function mkdir($path);
abstract public function rmdir($path);
abstract public function opendir($path);