From 3e11b31b6a5219fbb3397a9bad57b19b81954557 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Fri, 8 Nov 2013 02:32:02 +0100 Subject: [PATCH] removed conflicting use statement fixes #1161 --- framework/yii/web/PageCache.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/framework/yii/web/PageCache.php b/framework/yii/web/PageCache.php index a97659c..2a3187b 100644 --- a/framework/yii/web/PageCache.php +++ b/framework/yii/web/PageCache.php @@ -10,7 +10,6 @@ namespace yii\web; use Yii; use yii\base\ActionFilter; use yii\base\Action; -use yii\base\View; use yii\caching\Dependency; /** @@ -69,7 +68,7 @@ class PageCache extends ActionFilter */ public $enabled = true; /** - * @var View the view component to use for caching. If not set, the default application view component + * @var \yii\base\View the view component to use for caching. If not set, the default application view component * [[Application::view]] will be used. */ public $view;