addDependency('config'); $this->addDependency('metadata'); $this->addDependency('entityManager'); $this->addDependency('fileManager'); } protected function getConfig() /** @phpstan-ignore-line */ { return $this->getInjection('config'); } protected function getMetadata() /** @phpstan-ignore-line */ { return $this->getInjection('metadata'); } protected function getEntityManager() /** @phpstan-ignore-line */ { return $this->getInjection('entityManager'); } protected function getFileManager() /** @phpstan-ignore-line */ { return $this->getInjection('fileManager'); } abstract public function process(); /** @phpstan-ignore-line */ }