diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-20 14:54:54 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-20 14:54:54 +0200 |
commit | 23f1bdc3d4682dbb2e8d1a82921d62dbe0b213be (patch) | |
tree | f1a078e04f4d577cd03355c880257977e5e3f295 /lib/private/files/storage/common.php | |
parent | 92b60e36de8d89e8ea7c4781a8c5d5fa4371b7c3 (diff) | |
download | nextcloud-server-23f1bdc3d4682dbb2e8d1a82921d62dbe0b213be.tar.gz nextcloud-server-23f1bdc3d4682dbb2e8d1a82921d62dbe0b213be.zip |
Introduce Storage::getMetaData() to allow storage implementations more control over the data array
Diffstat (limited to 'lib/private/files/storage/common.php')
-rw-r--r-- | lib/private/files/storage/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index 0294fc4b5be..76678218054 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -584,7 +584,7 @@ abstract class Common implements Storage { /** * @inheritdoc */ - public function getData($path) { + public function getMetaData($path) { $data = []; $data['mimetype'] = $this->getMimeType($path); $data['mtime'] = $this->filemtime($path); |