config = $config; $this->entityManager = $entityManager; $this->aclManager = $aclManager; } public function run(): void { $sender = new Sender($this->config); $webhookQueue = new Queue( $sender, $this->config, $this->entityManager, $this->aclManager ); $webhookQueue->process(); } }