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

@@ -1,6 +1,6 @@
<?php
namespace App\Utils\InfluxDB;
namespace App\Interfaces;
use App\Models\Speedtest;

View File

@@ -8,7 +8,7 @@ use App\Helpers\SettingsHelper;
use App\Models\Speedtest;
use InfluxDB\Client as Version1;
use InfluxDB2\Client as Version2;
use App\Utils\InfluxDB\InfluxDBWrapperInterface as Client;
use App\Interfaces\InfluxDBWrapperInterface as Client;
class InfluxDB
{

View File

@@ -2,6 +2,7 @@
namespace App\Utils\InfluxDB;
use App\Interfaces\InfluxDBWrapperInterface;
use App\Models\Speedtest;
use Exception;
use InfluxDB\Client;