in src/CLIWithRequiredArguments.hack [35:49]
abstract public static function getHelpTextForRequiredArguments(
): vec<string>;
/**
* For arguments that are optional to the CLI, this function will provide
* their help text.
*
* The default return is the first string in the required argument `vec` -
* this can be overridden for more detailed information.
*
*/
<<__Override>>
public static function getHelpTextForOptionalArguments(): string {
return C\firstx(static::getHelpTextForRequiredArguments());
}