title = $title; $this->content = $content; $this->callback = $callback; } /** * 文本类型 * @param $name * @return $this */ public function type($name): self { $this->type = $name; return $this; } /** * @return array */ public function render(): array { return [ 'nodeName' => 'a-alert', 'title' => $this->title, 'type' => $this->type, 'child' => $this->content ]; } }