Console.php 413 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
/**
Alexander Makarov committed
11 12
 * Console helper provides useful methods for command line related tasks such as getting input or formatting and coloring
 * output.
13
 *
14
 * @author Carsten Brandt <mail@cebe.cc>
15 16
 * @since 2.0
 */
17
class Console extends BaseConsole
18 19
{
}