Move models into Models dir

This commit is contained in:
Henry Whitaker
2021-04-10 22:32:51 +01:00
parent 0b8ccfd8d3
commit 99c64af482
55 changed files with 55 additions and 55 deletions

View File

@@ -5,7 +5,7 @@ namespace App\Utils\InfluxDB;
use App\Exceptions\InfluxDBConnectionErrorException;
use App\Exceptions\InfluxDBNotEnabledException;
use App\Helpers\SettingsHelper;
use App\Speedtest;
use App\Models\Speedtest;
use InfluxDB\Client as Version1;
use InfluxDB2\Client as Version2;
use App\Utils\InfluxDB\InfluxDBWrapperInterface as Client;

View File

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

View File

@@ -2,7 +2,7 @@
namespace App\Utils\InfluxDB;
use App\Speedtest;
use App\Models\Speedtest;
interface InfluxDBWrapperInterface
{

View File

@@ -6,7 +6,7 @@ use App\Exceptions\SpeedtestFailureException;
use App\Helpers\SettingsHelper;
use App\Helpers\SpeedtestHelper;
use App\Interfaces\SpeedtestProvider;
use App\Speedtest;
use App\Models\Speedtest;
use Cache;
use Exception;
use JsonException;