actionScheduler = $actionScheduler; $this->remoteExecutorHandler = $remoteExecutorHandler; $this->daemonTriggerAction = $daemonTriggerAction; $this->daemonRunAction = $daemonRunAction; } public function init(): void { $this->daemonRunAction->init(); $this->daemonTriggerAction->init(); $this->remoteExecutorHandler->init(); } public function deactivate(): void { $this->actionScheduler->unscheduleAction(DaemonTrigger::NAME); $this->actionScheduler->unscheduleAction(DaemonRun::NAME); } }