PHPDaemon\Utils\Terminal::setStyle PHP Method

setStyle() public method

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