renamed console controller folder name.

This commit is contained in:
Qiang Xue
2012-08-06 21:58:39 -04:00
parent 7894217cc2
commit b074ecebe0
6 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
* @license http://www.yiiframework.com/license/
*/
namespace yii\console\commands;
namespace yii\console\controllers;
use yii\base\Application;
use yii\base\InlineAction;

View File

@ -13,7 +13,7 @@ defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
require(__DIR__ . '/yii.php');
$config = array(
'controllerPath' => '@yii/console/commands',
'controllerPath' => '@yii/console/controllers',
);
$id = 'yiic';
$basePath = __DIR__ . '/console';