Skip to content

Commit

Permalink
English verb conjugation correction (#23)
Browse files Browse the repository at this point in the history
Co-authored-by: Jefferson Cechinel <jefferson@febacapital.com>
  • Loading branch information
jeffersoncechinel and Jefferson Cechinel committed May 10, 2023
1 parent 8f4b0cd commit 85ecbd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ final class Hello extends Command

protected function execute(InputInterface $input, OutputInterface $output): int
{
$output->writeln("You says: {$input->getArgument('sentence')}");
$output->writeln("You said: {$input->getArgument('sentence')}");

return ExitCode::OK;
}
Expand Down Expand Up @@ -104,10 +104,10 @@ Available commands:

```shell
$ ./yii hello
You says: Hello!
You said: Hello!

$ ./yii hello 'Code something'
You says: Code something
You said: Code something
```

## Testing
Expand Down
2 changes: 1 addition & 1 deletion src/Command/HelloCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected function configure(): void

protected function execute(InputInterface $input, OutputInterface $output): int
{
$output->writeln("You says: {$input->getArgument('sentence')}");
$output->writeln("You said: {$input->getArgument('sentence')}");

return ExitCode::OK;
}
Expand Down

0 comments on commit 85ecbd9

Please sign in to comment.