| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace wechat\modules\cp\controllers;
- use yii\web\Controller;
- /**
- * Default controller for the `cp` module
- */
- class DefaultController extends Controller
- {
- /**
- * @inheritdoc
- */
- public function actions()
- {
- return [
- 'error' => [
- 'class' => 'yii\web\ErrorAction',
- ],
- ];
- }
-
- /**
- * Renders the index view for the module
- * @return string
- */
- public function actionIndex()
- {
- return $this->render('index');
- }
-
- }
|