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:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-08-22 12:00:59 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-09-09 23:56:02 +0300
commit2288363b0fbf86dc5a16b6c3e680095006317a68 (patch)
treef16584a0d981b07ad3bafc7b2867ae12a16eab7f /lib/public/WorkflowEngine
parent4aba1f1cff194fd8d0af20f9d80c878152fc5e00 (diff)
add missing @since annotations
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/public/WorkflowEngine')
-rw-r--r--lib/public/WorkflowEngine/IEntityAware.php8
-rw-r--r--lib/public/WorkflowEngine/IEntityEvent.php2
2 files changed, 9 insertions, 1 deletions
diff --git a/lib/public/WorkflowEngine/IEntityAware.php b/lib/public/WorkflowEngine/IEntityAware.php
index 2ef74d2b115..5ef5066f9ad 100644
--- a/lib/public/WorkflowEngine/IEntityAware.php
+++ b/lib/public/WorkflowEngine/IEntityAware.php
@@ -24,7 +24,13 @@ declare(strict_types=1);
namespace OCP\WorkflowEngine;
-
+/**
+ * Interface IEntityAware
+ *
+ * @package OCP\WorkflowEngine
+ *
+ * @since 18.0.0
+ */
interface IEntityAware {
/**
* @param object $entity
diff --git a/lib/public/WorkflowEngine/IEntityEvent.php b/lib/public/WorkflowEngine/IEntityEvent.php
index 89186e808ed..8baa0573fa8 100644
--- a/lib/public/WorkflowEngine/IEntityEvent.php
+++ b/lib/public/WorkflowEngine/IEntityEvent.php
@@ -30,6 +30,8 @@ namespace OCP\WorkflowEngine;
* represents an entitiy event that is dispatched via EventDispatcher
*
* @package OCP\WorkflowEngine
+ *
+ * @since 18.0.0
*/
interface IEntityEvent {
/**