mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-21 13:23:04 +01:00
14 lines
326 B
PHP
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;
|
|
}
|