This commit is contained in:
Lance Pioch 2024-03-23 16:26:56 -04:00
parent 9560e18798
commit 21465a0d93

View File

@ -2,13 +2,11 @@
namespace App\Repositories\Daemon; namespace App\Repositories\Daemon;
use GuzzleHttp\Client;
use App\Models\Node; use App\Models\Node;
use Illuminate\Http\Client\PendingRequest; use Illuminate\Http\Client\PendingRequest;
use Illuminate\Support\Facades\Http; use Illuminate\Support\Facades\Http;
use Webmozart\Assert\Assert; use Webmozart\Assert\Assert;
use App\Models\Server; use App\Models\Server;
use Illuminate\Contracts\Foundation\Application;
abstract class DaemonRepository abstract class DaemonRepository
{ {
@ -16,13 +14,6 @@ abstract class DaemonRepository
protected ?Node $node; protected ?Node $node;
/**
* DaemonRepository constructor.
*/
public function __construct(protected Application $app)
{
}
/** /**
* Set the server model this request is stemming from. * Set the server model this request is stemming from.
* *