| 1 | <?php |
||
| 8 | class MainController extends BaseController |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * {@inheritdoc} |
||
| 12 | */ |
||
| 13 | public function actions() |
||
| 14 | { |
||
| 15 | return [ |
||
| 16 | 'error' => [ |
||
| 17 | 'class' => 'yii\web\ErrorAction', |
||
| 18 | ], |
||
| 19 | ]; |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Display homepage. |
||
| 24 | * |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | public function actionIndex() |
||
| 31 | } |
||
| 32 |