aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/Exportable.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/classes/Exportable.php')
-rw-r--r--engine/classes/Exportable.php44
1 files changed, 23 insertions, 21 deletions
diff --git a/engine/classes/Exportable.php b/engine/classes/Exportable.php
index da5a7cc54..0c1ea5282 100644
--- a/engine/classes/Exportable.php
+++ b/engine/classes/Exportable.php
@@ -1,21 +1,23 @@
-<?php
-/**
- * Define an interface for all ODD exportable objects.
- *
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- */
-interface Exportable {
- /**
- * This must take the contents of the object and convert it to exportable ODD
- * @return object or array of objects.
- */
- public function export();
-
- /**
- * Return a list of all fields that can be exported.
- * This should be used as the basis for the values returned by export()
- */
- public function getExportableValues();
-} \ No newline at end of file
+<?php
+/**
+ * Define an interface for all ODD exportable objects.
+ *
+ * @package Elgg.Core
+ * @subpackage ODD
+ */
+interface Exportable {
+ /**
+ * This must take the contents of the object and convert it to exportable ODD
+ *
+ * @return object or array of objects.
+ */
+ public function export();
+
+ /**
+ * Return a list of all fields that can be exported.
+ * This should be used as the basis for the values returned by export()
+ *
+ * @return array
+ */
+ public function getExportableValues();
+}