From c998499985160cb1f80a20473732529a31fe148a Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 14 Sep 2021 20:59:40 +0300 Subject: [PATCH] feat(console): update EntriesHasCommand #543 --- .../core/Console/Commands/Entries/EntrieHasCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flextype/core/Console/Commands/Entries/EntrieHasCommand.php b/src/flextype/core/Console/Commands/Entries/EntrieHasCommand.php index a688fa4b..c4f26a6b 100644 --- a/src/flextype/core/Console/Commands/Entries/EntrieHasCommand.php +++ b/src/flextype/core/Console/Commands/Entries/EntrieHasCommand.php @@ -20,7 +20,7 @@ class EntriesHasCommand extends Command protected function configure(): void { $this->setName('entries:has'); - $this->setDescription('Check whether entry exists..'); + $this->setDescription('Check whether entry exists.'); $this->addOption('id', null, InputOption::VALUE_REQUIRED, 'Unique identifier of the entry.'); } @@ -32,7 +32,7 @@ class EntriesHasCommand extends Command $io->success('Entry ' . $input->getOption('id') . ' exists'); return Command::SUCCESS; } else { - $io->error('Entry ' . $input->getOption('id') . ' ins\'t exists'); + $io->error('Entry ' . $input->getOption('id') . ' doesn\'t exists'); return Command::FAILURE; } }