Convert DeleteShortUrlCommand into invokable command

This commit is contained in:
Alejandro Celaya
2025-12-15 09:47:16 +01:00
parent cbfcdd42c8
commit 36cb760a88
3 changed files with 22 additions and 35 deletions

View File

@@ -36,8 +36,8 @@ class EditShortUrlCommand extends Command
public function __invoke(
SymfonyStyle $io,
#[Argument('The short code to edit')] string $shortCode,
#[MapInput] ShortUrlDataInput $data,
#[Argument('The short code to edit')] string $shortCode,
#[Option('The domain to which the short URL is attached', shortcut: 'd')] string|null $domain = null,
#[Option('The long URL to set', shortcut: 'l')] string|null $longUrl = null,
): int {