for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace app\controllers;
use yii\web\Controller;
/**
* Class SiteController
* @package app\controllers
*/
class SiteController extends Controller
{
* @inheritdoc
public function actions()
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
];
}