mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Updating doc blocks.
This commit is contained in:
parent
02e25f7557
commit
4a32a39c22
1 changed files with 3 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue