setStyleSet() public méthode

Sets the used style set.
See also: getStyleSet()
public setStyleSet ( StyleSet $styleSet ) : static
$styleSet Webmozart\Console\Api\Formatter\StyleSet The style set to use.
Résultat static The current instance.
 public function testSetStyleSet()
 {
     $styleSet = new StyleSet();
     $this->config->setStyleSet($styleSet);
     $this->assertSame($styleSet, $this->config->getStyleSet());
 }