Adds support for influxdb version 1

This commit is contained in:
Henry Whitaker
2021-04-10 21:57:31 +01:00
parent 76e21bfe9d
commit 5db1106c37
13 changed files with 512 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Utils\InfluxDB;
use App\Speedtest;
interface InfluxDBWrapperInterface
{
public function testConnection(): bool;
public function doesDatabaseExist(string $database): bool;
public function createDatabase(string $database): bool;
public function store(Speedtest $speedtest): bool;
}