| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace backend\controllers;
- use backend\models\Mt4PricesApi;
- use yii\web\Controller;
- class SiteController extends Controller
- {
- /**
- * @inheritdoc
- */
- public function actions()
- {
- return [
- 'error' => [
- 'class' => 'yii\web\ErrorAction',
- ],
- ];
- }
- /**
- * 首页
- * @return string
- */
- public function actionIndex()
- {
- return $this->renderPartial('default');
- }
- }
|