Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-11-07 19:39:23 +0300
committerJoas Schilling <coding@schilljs.com>2016-11-16 11:25:45 +0300
commitc2a5c1f2c6a254143eced58733ace517aa35ddae (patch)
treeca1b65c8fb5dc7b416577e3eb437651585d8b982 /lib/public/Activity
parent6ddf43e27a6add5b7fd15c26dae9a6e18e46f309 (diff)
Allow combining events
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Activity')
-rw-r--r--lib/public/Activity/IEvent.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/public/Activity/IEvent.php b/lib/public/Activity/IEvent.php
index 6d587c381c2..c4becf54a7e 100644
--- a/lib/public/Activity/IEvent.php
+++ b/lib/public/Activity/IEvent.php
@@ -293,6 +293,18 @@ interface IEvent {
public function getIcon();
/**
+ * @param IEvent $child
+ * @since 9.2.0
+ */
+ public function setChildEvent(IEvent $child);
+
+ /**
+ * @return IEvent|null
+ * @since 9.2.0
+ */
+ public function getChildEvent();
+
+ /**
* @return bool
* @since 9.2.0
*/