aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/WorkflowEngine/IManager.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/WorkflowEngine/IManager.php')
-rw-r--r--lib/public/WorkflowEngine/IManager.php23
1 files changed, 5 insertions, 18 deletions
diff --git a/lib/public/WorkflowEngine/IManager.php b/lib/public/WorkflowEngine/IManager.php
index 8be47d961e7..78fd718ec9e 100644
--- a/lib/public/WorkflowEngine/IManager.php
+++ b/lib/public/WorkflowEngine/IManager.php
@@ -23,9 +23,6 @@
namespace OCP\WorkflowEngine;
-
-use OCP\Files\Storage\IStorage;
-
/**
* Interface IManager
*
@@ -42,21 +39,6 @@ interface IManager {
const EVENT_NAME_REG_CHECK = 'OCP\WorkflowEngine::registerChecks';
/**
- * @param IStorage $storage
- * @param string $path
- * @since 9.1
- */
- public function setFileInfo(IStorage $storage, $path);
-
- /**
- * @param string $class
- * @param bool $returnFirstMatchingOperationOnly
- * @return array
- * @since 9.1
- */
- public function getMatchingOperations($class, $returnFirstMatchingOperationOnly = true);
-
- /**
* Listen to `\OCP\WorkflowEngine::EVENT_NAME_REG_ENTITY` at the
* EventDispatcher for registering your entities.
*
@@ -79,4 +61,9 @@ interface IManager {
* @since 18.0.0
*/
public function registerCheck(ICheck $check): void;
+
+ /**
+ * @since 18.0.0
+ */
+ public function getRuleMatcher(): IRuleMatcher;
}