Total Complexity | 1 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
17 | class Configuration implements ConfigurationInterface |
||
18 | { |
||
19 | /** |
||
20 | * Config tree builder. |
||
21 | * |
||
22 | * Example config: |
||
23 | * |
||
24 | * anime_db_anime_news_network_browser: |
||
25 | * host: 'https://cdn.animenewsnetwork.cc' |
||
26 | * reports: '/encyclopedia/reports.xml' |
||
27 | * details: '/encyclopedia/api.xml' |
||
28 | * client: 'My Custom Bot 1.0' |
||
29 | * |
||
30 | * @return ArrayNodeDefinition |
||
31 | */ |
||
32 | 3 | public function getConfigTreeBuilder() |
|
58 |