yiisoft / config

Configuration management
https://www.yiiframework.com/
BSD 3-Clause "New" or "Revised" License
31 stars 11 forks source link

Check circular references #164

Open vjik opened 8 months ago

vjik commented 8 months ago
 'config-plugin' => [
            'params' => 'params.php',
            'params1' => '$params2',
            'params2' => '$params3',
            'params3' => '$params1',
        ],
    ],
);

$config->get('params3');

This should to throw specific exception about circular reference.