Console.php 513 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
/**
Carsten Brandt committed
11
 * TODO adjust phpdoc
12
 * Console View is the base class for console view components
13
 *
14 15
 * A console view provides functionality to create rich console application by allowing to format output
 * by adding color and font style to it.
16
 *
17
 * @author Carsten Brandt <mail@cebe.cc>
18 19
 * @since 2.0
 */
20
class Console extends ConsoleBase
21 22
{
}