diff options
author | Joas Schilling <coding@schilljs.com> | 2016-11-16 09:29:27 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-11-16 09:29:27 +0100 |
commit | 6b88d56e3aa94012dcaf9e5240b885b4e545efc6 (patch) | |
tree | ae829b3fd3e68f7a4573b82cbf46517d451b285e /lib/private/Activity/Event.php | |
parent | 6047493b6dba2a402f256d2286008c3baaa3d5f9 (diff) | |
download | nextcloud-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/private/Activity/Event.php')
-rw-r--r-- | lib/private/Activity/Event.php | 28 |
1 files changed, 14 insertions, 14 deletions
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; |