From 4a32a39c223ca64cedb026355449905d64a290b9 Mon Sep 17 00:00:00 2001 From: mark_story Date: Mon, 5 Jul 2010 21:57:39 -0400 Subject: [PATCH] Updating doc blocks. --- cake/libs/configure.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cake/libs/configure.php b/cake/libs/configure.php index d1c19982c..788d71c72 100644 --- a/cake/libs/configure.php +++ b/cake/libs/configure.php @@ -128,7 +128,8 @@ class Configure { } /** - * Used to read information stored in the Configure instance. + * Used to read information stored in the Configure instance. Currently its not + * possible to store `null` values in Configure. * * Usage: * {{{ @@ -138,7 +139,7 @@ class Configure { * * @link http://book.cakephp.org/view/927/read * @param string $var Variable to obtain. Use '.' to access array elements. - * @return string value of Configure::$var + * @return mixed value stored in configure, or null. */ public static function read($var = null) { if ($var === null) {