aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-22 10:24:26 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-22 10:24:26 +0100
commit67c79faae07aec79cc56456e0b666cb9a875f11f (patch)
tree5b20ec2c46593f37466e96b123a922b9fe40852a /lib/private
parent766ba1cd5fac2019e73810b157bbf0bd3fdab1cf (diff)
parent75ee5a9e9a8de5500c10a5df764f5c5b88a787da (diff)
downloadnextcloud-server-67c79faae07aec79cc56456e0b666cb9a875f11f.tar.gz
nextcloud-server-67c79faae07aec79cc56456e0b666cb9a875f11f.zip
Merge pull request #21840 from owncloud/fix-phpdoc
Fix PHPDoc - @changed is no official tag -> use @since
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/notification/inotification.php6
-rw-r--r--lib/private/notification/notification.php6
2 files changed, 4 insertions, 8 deletions
diff --git a/lib/private/notification/inotification.php b/lib/private/notification/inotification.php
index 0a47b57aa11..921f0779b92 100644
--- a/lib/private/notification/inotification.php
+++ b/lib/private/notification/inotification.php
@@ -79,8 +79,7 @@ interface INotification {
* @param string $id
* @return $this
* @throws \InvalidArgumentException if the object type or id is invalid
- * @since 8.2.0
- * @changed 9.0.0 Type of $id changed to string
+ * @since 8.2.0 - 9.0.0: Type of $id changed to string
*/
public function setObject($type, $id);
@@ -92,8 +91,7 @@ interface INotification {
/**
* @return string
- * @since 8.2.0
- * @changed 9.0.0 Return type changed to string
+ * @since 8.2.0 - 9.0.0: Return type changed to string
*/
public function getObjectId();
diff --git a/lib/private/notification/notification.php b/lib/private/notification/notification.php
index 70b854e6d56..677658eb3e8 100644
--- a/lib/private/notification/notification.php
+++ b/lib/private/notification/notification.php
@@ -167,8 +167,7 @@ class Notification implements INotification {
* @param string $id
* @return $this
* @throws \InvalidArgumentException if the object type or id is invalid
- * @since 8.2.0
- * @changed 9.0.0 Type of $id changed to string
+ * @since 8.2.0 - 9.0.0: Type of $id changed to string
*/
public function setObject($type, $id) {
if (!is_string($type) || $type === '' || isset($type[64])) {
@@ -193,8 +192,7 @@ class Notification implements INotification {
/**
* @return string
- * @since 8.2.0
- * @changed 9.0.0 Return type changed to string
+ * @since 8.2.0 - 9.0.0: Return type changed to string
*/
public function getObjectId() {
return $this->objectId;