File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -58,8 +58,8 @@ want a command to create a user::
58
58
// (it's equivalent to returning int(1))
59
59
// return Command::FAILURE;
60
60
61
- // or return this if there was invalid value during the execution
62
- // (it's equivalent to returning int(2))
61
+ // or return this to indicate incorrect command usage; e.g. invalid options
62
+ // or missing arguments (it's equivalent to returning int(2))
63
63
// return Command::INVALID
64
64
}
65
65
}
@@ -71,7 +71,7 @@ want a command to create a user::
71
71
72
72
.. versionadded :: 5.3
73
73
74
- The ``Command::INVALID `` constants was introduced in Symfony 5.3
74
+ The ``Command::INVALID `` constant was introduced in Symfony 5.3
75
75
76
76
Configuring the Command
77
77
-----------------------
You can’t perform that action at this time.
0 commit comments