isSupported($this->communitySupport); } public function isSupportedByElts(): bool { return $this->isSupported($this->eltsSupport); } protected function isSupported(?\DateTimeInterface $supportedUntil): bool { return $supportedUntil !== null && ( $supportedUntil >= new \DateTimeImmutable('now', new \DateTimeZone('UTC')) ); } }