| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace app\controllers;
- use Yii;
- use yii\web\Controller;
- class SiteController extends Controller
- {
- /**
- * @inheritdoc
- */
- public function actions()
- {
- return [
- 'error' => [
- 'class' => 'yii\web\ErrorAction',
- ],
- ];
- }
- /**
- * Displays homepage.
- *
- * @return string
- */
- public function actionIndex()
- {
- return $this->render('index');
- }
- }
|