Files
Speedtest-Tracker/app/Utils/InfluxDB/InfluxDBWrapperInterface.php
2021-04-10 22:32:51 +01:00

14 lines
326 B
PHP

<?php
namespace App\Utils\InfluxDB;
use App\Models\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;
}