From eb3ba271e8104df801dd27f9707659fe25daa9f5 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Tue, 19 Mar 2024 10:39:35 +1100 Subject: [PATCH] Add missing attribute --- src/Illuminate/Database/Console/DbCommand.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Illuminate/Database/Console/DbCommand.php b/src/Illuminate/Database/Console/DbCommand.php index dce6bc32dd17..b7561e08277f 100644 --- a/src/Illuminate/Database/Console/DbCommand.php +++ b/src/Illuminate/Database/Console/DbCommand.php @@ -4,9 +4,11 @@ use Illuminate\Console\Command; use Illuminate\Support\ConfigurationUrlParser; +use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Process\Process; use UnexpectedValueException; +#[AsCommand(name: 'db')] class DbCommand extends Command { /**