service === null) { $registration = $this->coordinator->getRegistrationContext()?->getFullTextSearchService(); if ($registration === null) { throw new ServiceNotFoundException('fts service not found'); } $this->service = $this->container->get($registration->getService()); } return $this->service; } /** * @return ServiceRegistration[] */ public function getContentProviders(): array { return $this->coordinator->getRegistrationContext()?->getFullTextSearchContentProviders() ?? []; } }