Added v1.12.0 files

This commit is contained in:
Henry Whitaker
2021-04-11 09:23:18 +01:00
parent e68d360274
commit 1c8017f902
74 changed files with 951 additions and 72 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Interfaces;
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;
}