Total Complexity | 1 |
Total Lines | 33 |
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_smotret_anime_browser: |
||
25 | * host: 'http://smotret-anime.ru' |
||
26 | * prefix: '/api/' |
||
27 | * client: 'My Custom Bot 1.0' |
||
28 | * |
||
29 | * @return ArrayNodeDefinition |
||
30 | */ |
||
31 | 3 | public function getConfigTreeBuilder() |
|
53 |