14 lines
322 B
PHP
14 lines
322 B
PHP
|
<?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;
|
||
|
}
|