Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updating doc blocks.
  • Loading branch information
markstory committed Jul 6, 2010
1 parent 02e25f7 commit 4a32a39
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cake/libs/configure.php
Expand Up @@ -128,7 +128,8 @@ public static function write($config, $value = null) {
}

/**
* 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:
* {{{
Expand All @@ -138,7 +139,7 @@ public static function write($config, $value = null) {
*
* @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) {
Expand Down

0 comments on commit 4a32a39

Please sign in to comment.