Commit 36e4930d by Alexander Makarov

Fixes #3669: added note about using ArrayHelper::getValue with objects

parent 9c92600b
...@@ -162,7 +162,8 @@ class BaseArrayHelper ...@@ -162,7 +162,8 @@ class BaseArrayHelper
* @param string|\Closure $key key name of the array element, or property name of the object, * @param string|\Closure $key key name of the array element, or property name of the object,
* or an anonymous function returning the value. The anonymous function signature should be: * or an anonymous function returning the value. The anonymous function signature should be:
* `function($array, $defaultValue)`. * `function($array, $defaultValue)`.
* @param mixed $default the default value to be returned if the specified key does not exist * @param mixed $default the default value to be returned if the specified array key does not exist. Not used when
* getting value from an object.
* @return mixed the value of the element if found, default value otherwise * @return mixed the value of the element if found, default value otherwise
* @throws InvalidParamException if $array is neither an array nor an object. * @throws InvalidParamException if $array is neither an array nor an object.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment