我的配置节点可以source
同时支持string
和array
值吗?
采购自string
:
# Valid configuration 1
my_bundle:
source: %kernel.root_dir%/../Resources/config/source.json
采购自array
:
# Valid configuration 2
my_bundle:
source:
operations: []
commands: []
扩展类将能够区分它们:
if (is_array($config['source']) {
// Bootstrap from array
} else {
// Bootstrap from file
}
我可能会使用这样的东西:
$rootNode->children()
->variableNode('source')
->validate()
->ifTrue(function ($v) { return !is_string($v) && !is_array($v); })
->thenInvalid('Configuration value must be either string or array.')
->end()
->end()
->end();
但是如何将source
(操作、命令等)的结构约束添加到变量节点(仅当其值为 type 时才应强制执行array
)?