diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2015-11-18 17:32:09 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2015-11-19 14:34:59 +0100 |
commit | ca6bd5cacd96ef04f5b940787575c5bdecfa756e (patch) | |
tree | ea56bce42b3ab72615504918893e6cb716640bc8 /lib/private | |
parent | e342973888dcee658f5899f8b0cb0ed50d4ae9bc (diff) | |
download | nextcloud-server-ca6bd5cacd96ef04f5b940787575c5bdecfa756e.tar.gz nextcloud-server-ca6bd5cacd96ef04f5b940787575c5bdecfa756e.zip |
Follow the interface again
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/files/stream/encryption.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/private/files/stream/encryption.php b/lib/private/files/stream/encryption.php index e0d263d80b1..4c328993ef7 100644 --- a/lib/private/files/stream/encryption.php +++ b/lib/private/files/stream/encryption.php @@ -471,4 +471,13 @@ class Encryption extends Wrapper { return parent::stream_seek($position); } + /** + * @param string $path + * @param array $options + * @return bool + */ + public function dir_opendir($path, $options) { + return false; + } + } |