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-27 18:40:00 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-09-09 23:56:02 +0300
commit26b19b73a46f714031237aa838c0011541f2a8c9 (patch)
treecaf03f763d966829b1fee0a3a47b8b5baa53da0a /lib/public/WorkflowEngine
parent4c2fdbb9085514692bb86a73bb415a41ccd209f4 (diff)
remove IEntity's getId in favor of class name
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/public/WorkflowEngine')
-rw-r--r--lib/public/WorkflowEngine/IEntity.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/public/WorkflowEngine/IEntity.php b/lib/public/WorkflowEngine/IEntity.php
index 2e77b741367..5ac1082a5a3 100644
--- a/lib/public/WorkflowEngine/IEntity.php
+++ b/lib/public/WorkflowEngine/IEntity.php
@@ -39,20 +39,6 @@ namespace OCP\WorkflowEngine;
interface IEntity {
/**
- * returns a unique ID of the entity.
- *
- * It can be, but does not need to be the class name of the entitiy. Beware
- * that it will be referenced in the database when rules are established,
- * so it should not change over the course of the app life.
- *
- * Example 1: "OCA/MyApp/Entity/Cat"
- * Example 2: "myapp_Cats"
- *
- * @since 18.0.0
- */
- public function getId(): string;
-
- /**
* returns a translated name to be presented in the web interface.
*
* Example: "File" (en), "Dosiero" (eo)