| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function getConfigTreeBuilder() |
||
| 21 | { |
||
| 22 | $treeBuilder = new TreeBuilder('core23_setlistfm'); |
||
| 23 | |||
| 24 | $rootNode = $treeBuilder->getRootNode(); |
||
| 25 | |||
| 26 | \assert($rootNode instanceof ArrayNodeDefinition); |
||
| 27 | |||
| 28 | $this->addApiSection($rootNode); |
||
| 29 | $this->addHttpClientSection($rootNode); |
||
| 30 | |||
| 31 | return $treeBuilder; |
||
| 32 | } |
||
| 33 | |||
| 64 |