<?php
/**
- * @author Joas Schilling <nickvergessen@owncloud.com>
+ * @author Joas Schilling <coding@schilljs.com>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
* Class SystemTagsEntityEvent
*
* @package OCP\SystemTag
- * @since 9.2.0
+ * @since 9.1.0
*/
class SystemTagsEntityEvent extends Event {
* SystemTagsEntityEvent constructor.
*
* @param string $event
- * @since 9.2.0
+ * @since 9.1.0
*/
public function __construct($event) {
$this->event = $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])) {
/**
* @return \Closure[]
- * @since 9.2.0
+ * @since 9.1.0
*/
public function getEntityCollections() {
return $this->collections;