| 1 | <?php |
||
| 20 | class Configuration implements ConfigurationInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Defines the structure of the configuration information. |
||
| 24 | * |
||
| 25 | * Example structure to be used in /app/config/config.yml: |
||
| 26 | * |
||
| 27 | * graviton_proxy: |
||
| 28 | * sources: |
||
| 29 | * swagger: |
||
| 30 | * petstore: |
||
| 31 | * prefix: petstore |
||
| 32 | * uri: http://petstore.swagger.io/v2/swagger.json |
||
| 33 | * another_source: |
||
| 34 | * prefix: myswaggerinstance |
||
| 35 | * uri: http://swagger.example.org/swagger.json |
||
| 36 | * |
||
| 37 | * @return TreeBuilder |
||
| 38 | */ |
||
| 39 | 1 | public function getConfigTreeBuilder() |
|
| 63 | } |
||
| 64 |