config = $config; $this->client = new Client(new Server($config['domain'])); } public function send(string $title, string $message): void { $msg = new Message(); $msg->topic($this->config['topic']); $msg->title($title); $msg->body($message); $this->client->send($msg); } }