diff --git a/views/layouts/main.php b/views/layouts/main.php index 88066de..278aa1d 100644 --- a/views/layouts/main.php +++ b/views/layouts/main.php @@ -5,7 +5,7 @@ use yii\bootstrap\NavBar; use yii\widgets\Breadcrumbs; /** - * @var $this \yii\base\View + * @var $this \yii\web\View * @var $content string */ app\config\AppAsset::register($this); diff --git a/views/site/about.php b/views/site/about.php index 5010642..0608dd2 100644 --- a/views/site/about.php +++ b/views/site/about.php @@ -2,7 +2,7 @@ use yii\helpers\Html; /** - * @var yii\base\View $this + * @var yii\web\View $this */ $this->title = 'About'; $this->params['breadcrumbs'][] = $this->title; diff --git a/views/site/contact.php b/views/site/contact.php index cd6d9ce..d2e59af 100644 --- a/views/site/contact.php +++ b/views/site/contact.php @@ -4,7 +4,7 @@ use yii\widgets\ActiveForm; use yii\captcha\Captcha; /** - * @var yii\base\View $this + * @var yii\web\View $this * @var yii\widgets\ActiveForm $form * @var app\models\ContactForm $model */ diff --git a/views/site/error.php b/views/site/error.php index 15a8eee..1b7ce04 100644 --- a/views/site/error.php +++ b/views/site/error.php @@ -3,7 +3,7 @@ use yii\helpers\Html; /** - * @var yii\base\View $this + * @var yii\web\View $this * @var string $name * @var string $message * @var Exception $exception diff --git a/views/site/index.php b/views/site/index.php index f2e6d5e..bcb2278 100644 --- a/views/site/index.php +++ b/views/site/index.php @@ -1,6 +1,6 @@ title = 'My Yii Application'; ?> diff --git a/views/site/login.php b/views/site/login.php index 14522af..da022d6 100644 --- a/views/site/login.php +++ b/views/site/login.php @@ -3,7 +3,7 @@ use yii\helpers\Html; use yii\widgets\ActiveForm; /** - * @var yii\base\View $this + * @var yii\web\View $this * @var yii\widgets\ActiveForm $form * @var app\models\LoginForm $model */