'', 'type' => '', 'closable' => false, 'showIcon' => false ]; /** * Alert constructor. * @param string $title * @param string $type * @param bool $closable * @param bool $showIcon */ public function __construct(string $title, string $type = '', bool $closable = false, bool $showIcon = false) { $this->rule['type'] = in_array($type, self::TYPE) ? $type : ''; $this->rule['title'] = $title . ':'; $this->rule['closable'] = $closable; $this->rule['showIcon'] = $showIcon; } /** * 设置类型 * @param string $type * @return $this */ public function type(string $type) { $this->rule['type'] = in_array($type, self::TYPE) ? $type : ''; return $this; } /** * 是否可关闭 * @param bool $closable * @return $this */ public function closable(bool $closable = false) { $this->rule['closable'] = $closable; return $this; } /** * 是否展示图标 * @param bool $showIcon * @return $this */ public function showIcon(bool $showIcon = false) { $this->rule['showIcon'] = $showIcon; return $this; } public function toArray(): array { $this->rule['name'] = self::NAME; return $this->rule; } }