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-07-13 19:33:47 +0300
committerJoas Schilling <coding@schilljs.com>2016-07-18 11:26:43 +0300
commit9795a732ff755b87f2e314d0cb5d3ac193515d83 (patch)
treeedf74582b22810bc70d6b8c4101d95c43fd7f049 /lib/public/SystemTag
parent54708f97a1f791f56df0025886184afc20f40344 (diff)
Update since version
Diffstat (limited to 'lib/public/SystemTag')
-rw-r--r--lib/public/SystemTag/SystemTagsEntityEvent.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/public/SystemTag/SystemTagsEntityEvent.php b/lib/public/SystemTag/SystemTagsEntityEvent.php
index d57b26709d1..7ad161027ad 100644
--- a/lib/public/SystemTag/SystemTagsEntityEvent.php
+++ b/lib/public/SystemTag/SystemTagsEntityEvent.php
@@ -1,6 +1,6 @@
<?php
/**
- * @author Joas Schilling <nickvergessen@owncloud.com>
+ * @author Joas Schilling <coding@schilljs.com>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
@@ -27,7 +27,7 @@ use Symfony\Component\EventDispatcher\Event;
* Class SystemTagsEntityEvent
*
* @package OCP\SystemTag
- * @since 9.2.0
+ * @since 9.1.0
*/
class SystemTagsEntityEvent extends Event {
@@ -42,7 +42,7 @@ class SystemTagsEntityEvent extends Event {
* SystemTagsEntityEvent constructor.
*
* @param string $event
- * @since 9.2.0
+ * @since 9.1.0
*/
public function __construct($event) {
$this->event = $event;
@@ -56,7 +56,7 @@ class SystemTagsEntityEvent extends Event {
* should be handled for. The return should then be bool,
* depending on whether tags are allowed (true) or not.
* @throws \OutOfBoundsException when the entity name is already taken
- * @since 9.2.0
+ * @since 9.1.0
*/
public function addEntityCollection($name, \Closure $entityExistsFunction) {
if (isset($this->collections[$name])) {
@@ -68,7 +68,7 @@ class SystemTagsEntityEvent extends Event {
/**
* @return \Closure[]
- * @since 9.2.0
+ * @since 9.1.0
*/
public function getEntityCollections() {
return $this->collections;