'公开', self::Private => '私有', }; } /** * 转标签 */ public function toTag():AbstractHtmlElement { return match ($this){ self::Public => $this->getTag('success', 'light'), self::Private => $this->getTag('warning', 'light'), }; } }