diff --git a/lib/Cake/Test/Case/Utility/DebuggerTest.php b/lib/Cake/Test/Case/Utility/DebuggerTest.php index 312843a7e..9742e68fb 100644 --- a/lib/Cake/Test/Case/Utility/DebuggerTest.php +++ b/lib/Cake/Test/Case/Utility/DebuggerTest.php @@ -237,12 +237,6 @@ class DebuggerTest extends CakeTestCase { View::$cacheAction = false View::$validationErrors = array View::$hasRendered = false - View::$modelScope = false - View::$model = NULL - View::$association = NULL - View::$field = NULL - View::$fieldSuffix = NULL - View::$modelId = NULL View::$uuids = array View::$output = false View::$request = NULL diff --git a/lib/Cake/View/Helper.php b/lib/Cake/View/Helper.php index 220db8934..9fc8761be 100644 --- a/lib/Cake/View/Helper.php +++ b/lib/Cake/View/Helper.php @@ -114,8 +114,28 @@ class Helper extends Object { 'year', 'month', 'day', 'hour', 'min', 'second', 'meridian' ); +/** + * The name of the current model entities are in scope of. + * + * @see Helper::setEntity() + * @var string + */ protected $_modelScope; + +/** + * The name of the current model association entities are in scope of. + * + * @see Helper::setEntity() + * @var string + */ protected $_association; + +/** + * The dot separated list of elements the current field entity is for. + * + * @see Helper::setEntity() + * @var string + */ protected $_entityPath; /**