| 1 | <?php | ||
| 16 | class Configuration implements ConfigurationInterface | ||
| 17 | { | ||
| 18 | /** | ||
| 19 | * Config tree builder. | ||
| 20 | * | ||
| 21 | * Example config: | ||
| 22 | * | ||
| 23 | * anime_db_ani_db_browser: | ||
| 24 | * api: | ||
| 25 | * host: 'http://api.anidb.net:9001' | ||
| 26 | * prefix: '/httpapi/' | ||
| 27 | * protover: 1 | ||
| 28 | * app: | ||
| 29 | * version: 2 | ||
| 30 | * client: 'animedbplugin' | ||
| 31 | * code: 'api-team-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' | ||
| 32 | * | ||
| 33 | * @return ArrayNodeDefinition | ||
| 34 | */ | ||
| 35 | 3 | public function getConfigTreeBuilder() | |
| 74 | } | ||
| 75 |