From 6b88d56e3aa94012dcaf9e5240b885b4e545efc6 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 16 Nov 2016 09:29:27 +0100 Subject: Update the since version to 11.0.0 Signed-off-by: Joas Schilling --- lib/private/Activity/Event.php | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'lib/private/Activity/Event.php') diff --git a/lib/private/Activity/Event.php b/lib/private/Activity/Event.php index 16c65c20853..df6756940a0 100644 --- a/lib/private/Activity/Event.php +++ b/lib/private/Activity/Event.php @@ -233,7 +233,7 @@ class Event implements 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) { if (!is_string($subject) || $subject === '') { @@ -245,7 +245,7 @@ class Event implements IEvent { /** * @return string - * @since 9.2.0 + * @since 11.0.0 */ public function getParsedSubject() { return $this->subjectParsed; @@ -256,7 +256,7 @@ class Event implements 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 = []) { if (!is_string($subject) || $subject === '') { @@ -274,7 +274,7 @@ class Event implements IEvent { /** * @return string - * @since 9.2.0 + * @since 11.0.0 */ public function getRichSubject() { return $this->subjectRich; @@ -282,7 +282,7 @@ class Event implements IEvent { /** * @return array[] - * @since 9.2.0 + * @since 11.0.0 */ public function getRichSubjectParameters() { return $this->subjectRichParameters; @@ -324,7 +324,7 @@ class Event implements 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) { if (!is_string($message)) { @@ -336,7 +336,7 @@ class Event implements IEvent { /** * @return string - * @since 9.2.0 + * @since 11.0.0 */ public function getParsedMessage() { return $this->messageParsed; @@ -347,7 +347,7 @@ class Event implements 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 setRichMessage($message, array $parameters = []) { if (!is_string($message)) { @@ -365,7 +365,7 @@ class Event implements IEvent { /** * @return string - * @since 9.2.0 + * @since 11.0.0 */ public function getRichMessage() { return $this->messageRich; @@ -373,7 +373,7 @@ class Event implements IEvent { /** * @return array[] - * @since 9.2.0 + * @since 11.0.0 */ public function getRichMessageParameters() { return $this->messageRichParameters; @@ -453,7 +453,7 @@ class Event implements 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) { if (!is_string($icon) || isset($icon[4000])) { @@ -465,7 +465,7 @@ class Event implements IEvent { /** * @return string - * @since 9.2.0 + * @since 11.0.0 */ public function getIcon() { return $this->icon; @@ -473,7 +473,7 @@ class Event implements IEvent { /** * @param IEvent $child - * @since 9.2.0 + * @since 11.0.0 */ public function setChildEvent(IEvent $child) { $this->child = $child; @@ -481,7 +481,7 @@ class Event implements IEvent { /** * @return IEvent|null - * @since 9.2.0 + * @since 11.0.0 */ public function getChildEvent() { return $this->child; -- cgit v1.2.3