| Total Complexity | 2 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class Configuration implements ConfigurationInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Generates the configuration tree builder. |
||
| 17 | */ |
||
| 18 | public function getConfigTreeBuilder(): TreeBuilder |
||
| 19 | { |
||
| 20 | 1 | $tree = new TreeBuilder('facile_crossbar_http_publisher'); |
|
| 21 | $rootNode = $tree->getRootNode(); |
||
| 22 | 1 | $this->addConnections($rootNode); |
|
| 23 | 1 | ||
| 24 | 1 | return $tree; |
|
| 25 | } |
||
| 26 | 1 | ||
| 27 | protected function addConnections(ArrayNodeDefinition $node): void |
||
| 48 | 1 | } |
|
| 49 | } |
||
| 50 |