mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-19 09:54:07 +08:00
22 lines
376 B
PHP
22 lines
376 B
PHP
<?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;
|
|
}
|
|
} |