Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ services:

## Example command

In case of having `console.php` as entrypoint (see below), this would add a user with username `john.doe` to database:
In case of having `console.php` as entrypoint (see below), this would add a user with username `john.doe`:

> `php console.php user:add john.doe`

Expand Down Expand Up @@ -156,7 +156,7 @@ final class AddUserCommand extends Command
try {
// do your logic
$this->usersModel->add($username);
// styled output as well
// styled output is supported as well
$output->writeln('<success>✔ Successfully added</success>');
return 0;

Expand Down