diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-23 21:22:03 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-23 21:22:03 -0400 |
commit | 5be520562997d3898268ed6bb44720ca35e062f1 (patch) | |
tree | b512de0e40507ea004a287de3b807d78e23fbcc7 /app/Core/ObjectStorage/FileStorage.php | |
parent | 25b9e90ef3b6018f898047be025ad859fcbbd96a (diff) |
Change interface for objectStorage
Diffstat (limited to 'app/Core/ObjectStorage/FileStorage.php')
-rw-r--r-- | app/Core/ObjectStorage/FileStorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Core/ObjectStorage/FileStorage.php b/app/Core/ObjectStorage/FileStorage.php index 96478c3a..fa1efe21 100644 --- a/app/Core/ObjectStorage/FileStorage.php +++ b/app/Core/ObjectStorage/FileStorage.php @@ -70,7 +70,7 @@ class FileStorage implements ObjectStorageInterface * @access public * @param string $key */ - public function passthru($key) + public function output($key) { $filename = $this->path.DIRECTORY_SEPARATOR.$key; |