30, ]); $this->client = new MastodonClient($guzzle); $this->client->domain($config['MASTODON_SERVER'])->token($config['MASTODON_ACCESS_TOKEN']); } } protected function _publish(string $text): void { $this->client->createStatus($text, [ 'language' => 'en' ]); } }