for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace app\controllers;
/**
* MainController implements homepage actions.
*/
class MainController extends BaseController
{
* {@inheritdoc}
public function actions()
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
];
}
* Display homepage.
*
* @return string
public function actionIndex()
return $this->render('index');