Stecman\Component\Symfony\Console\BashCompletion\CompletionContext::setWordBreaks PHP Method

setWordBreaks() public method

This defaults to a sane value based on BASH's word break characters and shouldn't need to be changed unless your completions contain the default word break characters.
See also: wordBreaks
public setWordBreaks ( string $charList )
$charList string - a single string containing all of the characters to break words on
    public function setWordBreaks($charList)
    {
        $this->wordBreaks = $charList;
        $this->reset();
    }