From f83fcc553cb11f27f945d9cc2390ad13b5883345 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Sat, 31 Aug 2013 18:51:00 +0200 Subject: [PATCH] fixed return value of Component::can*Property return false, not null --- framework/yii/base/Component.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/yii/base/Component.php b/framework/yii/base/Component.php index 6aebc92..bd49bc8 100644 --- a/framework/yii/base/Component.php +++ b/framework/yii/base/Component.php @@ -264,8 +264,8 @@ class Component extends Object return true; } } - return false; } + return false; } /** @@ -294,8 +294,8 @@ class Component extends Object return true; } } - return false; } + return false; } /**