1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-07 21:56:33 +02:00

feat(console): update EntriesDeleteCommand #543

This commit is contained in:
Awilum
2021-09-14 18:35:19 +03:00
parent 891fae52d2
commit c5c3539018

View File

@@ -29,7 +29,7 @@ class EntriesDeleteCommand extends Command
$io = new SymfonyStyle($input, $output);
if (entries()->delete($input->getOption('id'))) {
$io->success('Deleted entry ' . $input->getOption('id'));
$io->success('Entry ' . $input->getOption('id') . ' deleted.');
return Command::SUCCESS;
} else {
$io->error('Entry ' . $input->getOption('id') . ' wasn\'t deleted.');