ConsoleColor.php 591 Bytes
Newer Older
1 2 3
<?php
/**
 * @link http://www.yiiframework.com/
Qiang Xue committed
4
 * @copyright Copyright (c) 2008 Yii Software LLC
5 6 7
 * @license http://www.yiiframework.com/license/
 */

Qiang Xue committed
8
namespace yii\helpers;
9 10

// todo test this on all kinds of terminals, especially windows (check out lib ncurses)
11 12

/**
13
 * Console View is the base class for console view components
14
 *
15 16
 * A console view provides functionality to create rich console application by allowing to format output
 * by adding color and font style to it.
17
 *
18
 * @author Carsten Brandt <mail@cebe.cc>
19 20
 * @since 2.0
 */
Qiang Xue committed
21
class ConsoleColor extends base\ConsoleColor
22 23
{
}