コード例 #1
0
ファイル: Str.php プロジェクト: d-ashesss/php-console
 /**
  * Composes styled string
  *
  * @return string
  */
 public function compose()
 {
     $prefix = Code::makeStyle($this->fgColor, $this->bgColor, $this->attributes);
     $suffix = '';
     if (!empty($prefix)) {
         $suffix = Code::make(Code::STYLE_RESET);
     }
     return $prefix . $this->text . $suffix;
 }