cakephp2-php8/lib/Cake/Test/test_app/Config/var_test2.php
mark_story 87924414fc Update Configure::load() to use Set::merge()
This fixes some of the awkward behavior that using
array_merge_recursive() could create.

Fixes #2441
2012-01-07 10:45:48 -05:00

13 lines
200 B
PHP

<?php
$config = array(
'Read' => 'value2',
'Deep' => array(
'Second' => array(
'SecondDeepest' => 'buried2'
)
),
'TestAcl' => array(
'classname' => 'Overwrite',
'custom' => 'one'
)
);