Overrides OutputFormatterStyleInterface::unsetOption
public function unsetOption(string $option) : void { $pos = array_search($option, $this->options); if (false !== $pos) { unset($this->options[$pos]); } $this->color = new Color($this->foreground, $this->background, $this->options); }