Merging changes from 1.2.x.x Set class to 1.1.x.x branch

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4792 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-04-05 20:09:32 +00:00
parent a677c882e7
commit 135ebe8994

View file

@ -60,7 +60,6 @@ class Set extends Object {
function &get() {
return $this->value;
}
/**
* This function can be thought of as a hybrid between PHP's array_merge and array_merge_recursive. The difference
* to the two is that if an array key contains another array then the function behaves recursive (unlike array_merge)
@ -71,6 +70,7 @@ class Set extends Object {
* @param array $arr1
* @param array $arr2
* @return array
* @access public
*/
function merge($arr1, $arr2 = null) {
// Get all arguments that were passed to the function