PHPDaemon\Utils\Terminal::setStyle PHP 메소드

setStyle() 공개 메소드

Set text style
public setStyle ( string $c ) : void
$c string Style
리턴 void
    public function setStyle($c)
    {
        if ($this->enableColor) {
            echo "[" . $c . 'm';
        }
    }