aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Activity/IEvent.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-11-16 09:29:27 +0100
committerJoas Schilling <coding@schilljs.com>2016-11-16 09:29:27 +0100
commit6b88d56e3aa94012dcaf9e5240b885b4e545efc6 (patch)
treeae829b3fd3e68f7a4573b82cbf46517d451b285e /lib/public/Activity/IEvent.php
parent6047493b6dba2a402f256d2286008c3baaa3d5f9 (diff)
downloadnextcloud-server-6b88d56e3aa94012dcaf9e5240b885b4e545efc6.tar.gz
nextcloud-server-6b88d56e3aa94012dcaf9e5240b885b4e545efc6.zip
Update the since version to 11.0.0
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Activity/IEvent.php')
-rw-r--r--lib/public/Activity/IEvent.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/public/Activity/IEvent.php b/lib/public/Activity/IEvent.php
index c4becf54a7e..a12ba8642a1 100644
--- a/lib/public/Activity/IEvent.php
+++ b/lib/public/Activity/IEvent.php
@@ -101,13 +101,13 @@ interface IEvent {
* @param string $subject
* @return $this
* @throws \InvalidArgumentException if the subject is invalid
- * @since 9.2.0
+ * @since 11.0.0
*/
public function setParsedSubject($subject);
/**
* @return string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getParsedSubject();
@@ -116,19 +116,19 @@ interface IEvent {
* @param array $parameters
* @return $this
* @throws \InvalidArgumentException if the subject or parameters are invalid
- * @since 9.2.0
+ * @since 11.0.0
*/
public function setRichSubject($subject, array $parameters = []);
/**
* @return string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getRichSubject();
/**
* @return array[]
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getRichSubjectParameters();
@@ -147,13 +147,13 @@ interface IEvent {
* @param string $message
* @return $this
* @throws \InvalidArgumentException if the message is invalid
- * @since 9.2.0
+ * @since 11.0.0
*/
public function setParsedMessage($message);
/**
* @return string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getParsedMessage();
@@ -162,19 +162,19 @@ interface IEvent {
* @param array $parameters
* @return $this
* @throws \InvalidArgumentException if the message or parameters are invalid
- * @since 9.2.0
+ * @since 11.0.0
*/
public function setRichMessage($message, array $parameters = []);
/**
* @return string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getRichMessage();
/**
* @return array[]
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getRichMessageParameters();
@@ -282,37 +282,37 @@ interface IEvent {
* @param string $icon
* @return $this
* @throws \InvalidArgumentException if the icon is invalid
- * @since 9.2.0
+ * @since 11.0.0
*/
public function setIcon($icon);
/**
* @return string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIcon();
/**
* @param IEvent $child
- * @since 9.2.0
+ * @since 11.0.0
*/
public function setChildEvent(IEvent $child);
/**
* @return IEvent|null
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getChildEvent();
/**
* @return bool
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isValid();
/**
* @return bool
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isValidParsed();
}