summaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/lib/Manager.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-07-07 11:30:58 +0200
committerJoas Schilling <coding@schilljs.com>2023-07-19 17:37:34 +0200
commitaa039c986a3e8aaa97569d65ff1afd47a9b94a53 (patch)
treef4b40fde0f75197d193f87043f5134b02f345670 /apps/workflowengine/lib/Manager.php
parent4877d0b62e1be0a3b726c901e9a1f986fa1a11c5 (diff)
downloadnextcloud-server-aa039c986a3e8aaa97569d65ff1afd47a9b94a53.tar.gz
nextcloud-server-aa039c986a3e8aaa97569d65ff1afd47a9b94a53.zip
fix(workflowengine): Remove legacy event (deprecated since 17)
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/workflowengine/lib/Manager.php')
-rw-r--r--apps/workflowengine/lib/Manager.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/apps/workflowengine/lib/Manager.php b/apps/workflowengine/lib/Manager.php
index 674cfc65313..7d55cff446e 100644
--- a/apps/workflowengine/lib/Manager.php
+++ b/apps/workflowengine/lib/Manager.php
@@ -66,8 +66,6 @@ use OCP\WorkflowEngine\IEntityEvent;
use OCP\WorkflowEngine\IManager;
use OCP\WorkflowEngine\IOperation;
use OCP\WorkflowEngine\IRuleMatcher;
-use Symfony\Component\EventDispatcher\EventDispatcherInterface as LegacyDispatcher;
-use Symfony\Component\EventDispatcher\GenericEvent;
class Manager implements IManager {
/** @var IStorage */
@@ -94,9 +92,6 @@ class Manager implements IManager {
/** @var IL10N */
protected $l;
- /** @var LegacyDispatcher */
- protected $legacyEventDispatcher;
-
/** @var IEntity[] */
protected $registeredEntities = [];
@@ -126,7 +121,6 @@ class Manager implements IManager {
IDBConnection $connection,
IServerContainer $container,
IL10N $l,
- LegacyDispatcher $eventDispatcher,
ILogger $logger,
IUserSession $session,
IEventDispatcher $dispatcher,
@@ -136,7 +130,6 @@ class Manager implements IManager {
$this->connection = $connection;
$this->container = $container;
$this->l = $l;
- $this->legacyEventDispatcher = $eventDispatcher;
$this->logger = $logger;
$this->operationsByScope = new CappedMemoryCache(64);
$this->session = $session;
@@ -694,7 +687,6 @@ class Manager implements IManager {
*/
public function getEntitiesList(): array {
$this->dispatcher->dispatchTyped(new RegisterEntitiesEvent($this));
- $this->legacyEventDispatcher->dispatch(IManager::EVENT_NAME_REG_ENTITY, new GenericEvent($this));
return array_values(array_merge($this->getBuildInEntities(), $this->registeredEntities));
}
@@ -704,7 +696,6 @@ class Manager implements IManager {
*/
public function getOperatorList(): array {
$this->dispatcher->dispatchTyped(new RegisterOperationsEvent($this));
- $this->legacyEventDispatcher->dispatch(IManager::EVENT_NAME_REG_OPERATION, new GenericEvent($this));
return array_merge($this->getBuildInOperators(), $this->registeredOperators);
}
@@ -714,7 +705,6 @@ class Manager implements IManager {
*/
public function getCheckList(): array {
$this->dispatcher->dispatchTyped(new RegisterChecksEvent($this));
- $this->legacyEventDispatcher->dispatch(IManager::EVENT_NAME_REG_CHECK, new GenericEvent($this));
return array_merge($this->getBuildInChecks(), $this->registeredChecks);
}