8000
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 1d2fab8 commit eef382cCopy full SHA for eef382c
console.rst
@@ -45,9 +45,16 @@ want a command to create a user::
45
46
protected function execute(InputInterface $input, OutputInterface $output)
47
{
48
- // ...
+ // ... put here the code to run in your command
49
+
50
+ // this method must return an integer number with the "exit status code"
51
+ // of the command.
52
53
+ // return this if there was no problem running the command
54
return 0;
55
56
+ // or return this if some error happened during the execution
57
+ // return 1;
58
}
59
60
0 commit comments