From ebe5df5c97a83ff16a40000ff6b5bf0da06b53f2 Mon Sep 17 00:00:00 2001 From: Glennmen Date: Wed, 25 Feb 2026 17:17:53 +0100 Subject: [PATCH] Resolve PloiAPI via service container --- app/Commands/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Commands/Command.php b/app/Commands/Command.php index 4f9f3a9..87078ed 100644 --- a/app/Commands/Command.php +++ b/app/Commands/Command.php @@ -16,7 +16,7 @@ public function __construct() { parent::__construct(); - $this->ploi = new PloiAPI; + $this->ploi = app(PloiAPI::class); $this->configuration = new Configuration; }