From 7f74afcd6f08a79814b9761f5cc35a860b22fb15 Mon Sep 17 00:00:00 2001 From: Boy132 Date: Thu, 6 Nov 2025 12:55:35 +0100 Subject: [PATCH] revert change not needed --- app/Console/Commands/Plugin/ComposerPluginsCommand.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/Console/Commands/Plugin/ComposerPluginsCommand.php b/app/Console/Commands/Plugin/ComposerPluginsCommand.php index 3d506bafd..69a4c068f 100644 --- a/app/Console/Commands/Plugin/ComposerPluginsCommand.php +++ b/app/Console/Commands/Plugin/ComposerPluginsCommand.php @@ -4,24 +4,17 @@ namespace App\Console\Commands\Plugin; use App\Facades\Plugins; use App\Models\Plugin; -use App\Traits\Commands\RequiresDatabaseMigrations; use Exception; use Illuminate\Console\Command; class ComposerPluginsCommand extends Command { - use RequiresDatabaseMigrations; - protected $signature = 'p:plugin:composer'; protected $description = 'Runs "composer require" on all installed plugins.'; public function handle(): void { - if (!$this->hasCompletedMigrations()) { - return; - } - $plugins = Plugin::all(); foreach ($plugins as $plugin) { if (!$plugin->shouldLoad()) {