Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function getConfigTreeBuilder() |
||
20 | { |
||
21 | $treeBuilder = new TreeBuilder(); |
||
22 | $root = $treeBuilder->root('flagbit_product_cloner'); |
||
23 | |||
24 | $root->children() |
||
25 | ->arrayNode('attribute_blacklist') |
||
26 | ->info('A list of attribute codes that need to be left out for the clone') |
||
27 | ->defaultValue([]) |
||
28 | ->scalarPrototype() |
||
29 | ->info('Valid attribute codes') |
||
30 | ->end() |
||
31 | ->end() |
||
32 | ->end(); |
||
33 | |||
34 | return $treeBuilder; |
||
35 | } |
||
37 |