summaryrefslogtreecommitdiffstats
path: root/lib/Interfaces/Object/ImageInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Interfaces/Object/ImageInterface.php')
-rw-r--r--lib/Interfaces/Object/ImageInterface.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/Interfaces/Object/ImageInterface.php b/lib/Interfaces/Object/ImageInterface.php
index 63b2e666..6f3f612d 100644
--- a/lib/Interfaces/Object/ImageInterface.php
+++ b/lib/Interfaces/Object/ImageInterface.php
@@ -100,10 +100,27 @@ class ImageInterface extends DocumentInterface implements IActivityPubInterface
/**
* @param ACore $item
*/
+ public function update(ACore $item) {
+ parent::update($item);
+ }
+
+
+ /**
+ * @param ACore $item
+ */
public function delete(ACore $item) {
parent::delete($item);
}
+ /**
+ * @param ACore $item
+ * @param string $source
+ */
+ public function event(ACore $item, string $source) {
+ parent::event($item, $source);
+ }
+
+
}