$helperSet
$helperSet :
Helps outputting debug information when running an external program from a command.
An external program can be a Process, an HTTP request, or anything else.
setHelperSet(\Symfony\Component\Console\Helper\HelperSet $helperSet = null)
Sets the helper set associated with this helper.
\Symfony\Component\Console\Helper\HelperSet | $helperSet |
getHelperSet() : \Symfony\Component\Console\Helper\HelperSet
Gets the helper set associated with this helper.
A HelperSet instance
strlenWithoutDecoration(\Symfony\Component\Console\Formatter\OutputFormatterInterface $formatter, $string)
\Symfony\Component\Console\Formatter\OutputFormatterInterface | $formatter | |
$string |
removeDecoration(\Symfony\Component\Console\Formatter\OutputFormatterInterface $formatter, $string)
\Symfony\Component\Console\Formatter\OutputFormatterInterface | $formatter | |
$string |
progress(string $id, string $buffer, boolean $error = false, string $prefix = 'OUT', string $errorPrefix = 'ERR') : string
Adds progress to a formatting session.
string | $id | The id of the formatting session |
string | $buffer | The message to display |
boolean | $error | Whether to consider the buffer as error |
string | $prefix | The prefix for output |
string | $errorPrefix | The prefix for error output |
stop(string $id, string $message, boolean $successful, string $prefix = 'RES') : string
Stops a formatting session.
string | $id | The id of the formatting session |
string | $message | The message to display |
boolean | $successful | Whether to consider the result as success |
string | $prefix | The prefix for the end output |