Moved "framework" to "iii".

This commit is contained in:
Qiang Xue
2013-05-09 12:00:15 -04:00
parent 15e1a79952
commit 0d814fa523
202 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\debug\controllers;
use yii\web\Controller;
/**
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class DefaultController extends Controller
{
public function actionIndex($tag)
{
echo $tag;
}
}