type === 'unknown'; } /** * Prüft, ob es sich um eine User-Shop-Domain handelt. */ public function isUserShop(): bool { return $this->type === 'user-shop'; } /** * Gibt den Slug des User-Shops zurück. */ public function getUserShopSlug(): ?string { return $this->userShop?->slug; } }