aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
+
}
/**