setStyleSet() 공개 메소드

Sets the used style set.
또한 보기: getStyleSet()
public setStyleSet ( StyleSet $styleSet ) : static
$styleSet Webmozart\Console\Api\Formatter\StyleSet The style set to use.
리턴 static The current instance.
예제 #1
0
 public function testSetStyleSet()
 {
     $styleSet = new StyleSet();
     $this->config->setStyleSet($styleSet);
     $this->assertSame($styleSet, $this->config->getStyleSet());
 }