resolveCenter(...)), new TwigFilter('chill_resolve_scope', $this->resolveScope(...)), new TwigFilter('chill_is_scope_concerned', $this->isScopeConcerned(...)), ]; } /** * @return bool */ public function isScopeConcerned($entity, ?array $options = []) { return $this->scopeResolverDispatcher->isConcerned($entity, $options); } /** * @return Center|Center[]|null */ public function resolveCenter(mixed $entity, ?array $options = []) { return $this->centerResolverDispatcher->resolveCenters($entity, $options); } /** * @return array|\Chill\MainBundle\Entity\Scope|\Chill\MainBundle\Entity\Scope[] */ public function resolveScope($entity, ?array $options = []): array|\Chill\MainBundle\Entity\Scope { return $this->scopeResolverDispatcher->resolveScope(); } }