mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-16 06:17:56 +08:00
Moved "framework" to "iii".
This commit is contained in:
22
yii/debug/controllers/DefaultController.php
Normal file
22
yii/debug/controllers/DefaultController.php
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user