Move influx interface into interfaces folder

This commit is contained in:
Henry Whitaker
2021-04-10 22:57:11 +01:00
parent 7cf8dfc0b2
commit 4dc3e5b09c
3 changed files with 3 additions and 2 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;
}