We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9a42bb commit e70772bCopy full SHA for e70772b
1 file changed
.docs/README.md
@@ -105,7 +105,7 @@ services:
105
106
## Example command
107
108
-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`:
109
110
> `php console.php user:add john.doe`
111
@@ -156,7 +156,7 @@ final class AddUserCommand extends Command
156
try {
157
// do your logic
158
$this->usersModel->add($username);
159
- // styled output as well
+ // styled output is supported as well
160
$output->writeln('<success>✔ Successfully added</success>');
161
return 0;
162
0 commit comments