diff options
Diffstat (limited to 'lib/classes/PrivacyObject.php')
| -rw-r--r-- | lib/classes/PrivacyObject.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/classes/PrivacyObject.php b/lib/classes/PrivacyObject.php new file mode 100644 index 0000000..8129634 --- /dev/null +++ b/lib/classes/PrivacyObject.php @@ -0,0 +1,11 @@ +<?php +interface PrivacyObject +{ + /** + * Export available data of a given user into a storage object + * (an instance of the StoredUserData class) for that user. + * + * @param StoredUserData $storage object to store data into + */ + public static function exportUserData(StoredUserData $storage); +} |
