client = $client; } public function testConnection(): bool { return $this->client->health()->getStatus() !== 'pass'; } public function doesDatabaseExist(string $database): bool { return true; } public function createDatabase(string $database): bool { return true; } public function store(Speedtest $speedtest): bool { return true; } }