aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/SystemTag
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/SystemTag')
-rw-r--r--lib/public/SystemTag/ManagerEvent.php6
-rw-r--r--lib/public/SystemTag/MapperEvent.php4
-rw-r--r--lib/public/SystemTag/SystemTagsEntityEvent.php2
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/public/SystemTag/ManagerEvent.php b/lib/public/SystemTag/ManagerEvent.php
index 290d4f4c129..816a7585dfc 100644
--- a/lib/public/SystemTag/ManagerEvent.php
+++ b/lib/public/SystemTag/ManagerEvent.php
@@ -37,9 +37,9 @@ use OCP\EventDispatcher\Event;
* @since 9.0.0
*/
class ManagerEvent extends Event {
- const EVENT_CREATE = 'OCP\SystemTag\ISystemTagManager::createTag';
- const EVENT_UPDATE = 'OCP\SystemTag\ISystemTagManager::updateTag';
- const EVENT_DELETE = 'OCP\SystemTag\ISystemTagManager::deleteTag';
+ public const EVENT_CREATE = 'OCP\SystemTag\ISystemTagManager::createTag';
+ public const EVENT_UPDATE = 'OCP\SystemTag\ISystemTagManager::updateTag';
+ public const EVENT_DELETE = 'OCP\SystemTag\ISystemTagManager::deleteTag';
/** @var string */
protected $event;
diff --git a/lib/public/SystemTag/MapperEvent.php b/lib/public/SystemTag/MapperEvent.php
index 38268fed1da..a8f04742e90 100644
--- a/lib/public/SystemTag/MapperEvent.php
+++ b/lib/public/SystemTag/MapperEvent.php
@@ -36,8 +36,8 @@ use OCP\EventDispatcher\Event;
* @since 9.0.0
*/
class MapperEvent extends Event {
- const EVENT_ASSIGN = 'OCP\SystemTag\ISystemTagObjectMapper::assignTags';
- const EVENT_UNASSIGN = 'OCP\SystemTag\ISystemTagObjectMapper::unassignTags';
+ public const EVENT_ASSIGN = 'OCP\SystemTag\ISystemTagObjectMapper::assignTags';
+ public const EVENT_UNASSIGN = 'OCP\SystemTag\ISystemTagObjectMapper::unassignTags';
/** @var string */
protected $event;
diff --git a/lib/public/SystemTag/SystemTagsEntityEvent.php b/lib/public/SystemTag/SystemTagsEntityEvent.php
index 011f7d09fc0..ae49323507b 100644
--- a/lib/public/SystemTag/SystemTagsEntityEvent.php
+++ b/lib/public/SystemTag/SystemTagsEntityEvent.php
@@ -36,7 +36,7 @@ use OCP\EventDispatcher\Event;
* @since 9.1.0
*/
class SystemTagsEntityEvent extends Event {
- const EVENT_ENTITY = 'OCP\SystemTag\ISystemTagManager::registerEntity';
+ public const EVENT_ENTITY = 'OCP\SystemTag\ISystemTagManager::registerEntity';
/** @var string */
protected $event;