From e6183cea8d9eb680f1d965e1944162ea2e35dcd0 Mon Sep 17 00:00:00 2001 From: Developer Date: Sat, 6 Dec 2025 20:15:03 -0700 Subject: [PATCH] fix(sync): remove non-existent ComponentManager dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SyncComponentsCommand was importing and injecting ComponentManager which does not exist in the codebase, causing a fatal error. Removed the unused import and parameter since the command only needs JsonComponentRegistrar and ServiceProviderDetector. Fixes #95 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- app/Commands/System/SyncComponentsCommand.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Commands/System/SyncComponentsCommand.php b/app/Commands/System/SyncComponentsCommand.php index fe5087c..197919f 100644 --- a/app/Commands/System/SyncComponentsCommand.php +++ b/app/Commands/System/SyncComponentsCommand.php @@ -2,7 +2,6 @@ namespace App\Commands\System; -use App\Services\ComponentManager; use App\Services\JsonComponentRegistrar; use App\Services\ServiceProviderDetector; use Illuminate\Console\Command; @@ -16,7 +15,6 @@ class SyncComponentsCommand extends Command protected $description = 'Sync component registry with installed packages (post-install hook)'; public function handle( - ComponentManager $componentManager, JsonComponentRegistrar $registrar, ServiceProviderDetector $detector ): int {