aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/filestore.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-25 17:04:35 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-25 17:04:35 +0000
commit10e8d3529df24ccb205211f3030353cd2db9e0e0 (patch)
tree2c8194da012f27984c61b1db35a0aa8bac41b4f1 /engine/lib/filestore.php
parentc50ef570f0428a5f22641bd1cf665a5383c62ecb (diff)
downloadelgg-10e8d3529df24ccb205211f3030353cd2db9e0e0.tar.gz
elgg-10e8d3529df24ccb205211f3030353cd2db9e0e0.tar.bz2
Fixes for filestore.
git-svn-id: https://code.elgg.org/elgg/trunk@1128 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/filestore.php')
-rw-r--r--engine/lib/filestore.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/engine/lib/filestore.php b/engine/lib/filestore.php
index 293122586..e0fe07a98 100644
--- a/engine/lib/filestore.php
+++ b/engine/lib/filestore.php
@@ -72,14 +72,6 @@
* @return int
*/
abstract public function tell($f);
-
- /**
- * Get the contents of the whole file.
- *
- * @param mixed $f The file handle.
- * @return mixed The file contents.
- */
- abstract public function grabFile($f);
/**
* Close a given file handle.
@@ -121,7 +113,15 @@
* Set the parameters from the associative array produced by $this->getParameters().
*/
abstract public function setParameters(array $parameters);
-
+
+ /**
+ * Get the contents of the whole file.
+ *
+ * @param mixed $f The file handle.
+ * @return mixed The file contents.
+ */
+ abstract public function grabFile(ElggFile $file);
+
}
/**