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 1e754a8 commit 32d45c2Copy full SHA for 32d45c2
README.md
@@ -122,6 +122,8 @@ $app
122
echo ($intentToAdd ? 'Intent to add ' : 'Add ')
123
. implode(', ', $paths)
124
. ($force ? ' with force' : '');
125
+
126
+ // If you return integer from here, that will be taken as exit error code
127
})
128
// Done setting up this command for now, tap() to retreat back so we can add another command
129
->tap()
@@ -196,7 +198,9 @@ class InitCommand extends Ahc\Cli\Input\Command
196
198
$io->write('Apple ' . $apple, true);
197
199
$io->write('Ball ' . $ball, true);
200
- // ...
201
+ // more codes ...
202
203
204
}
205
206
0 commit comments