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