1 | <?php |
||
19 | class Configuration implements ConfigurationInterface |
||
20 | { |
||
21 | /** |
||
22 | * Defines the structure of the configuration information. |
||
23 | * |
||
24 | * Example structure to be used in /app/config/config.yml: |
||
25 | * |
||
26 | * graviton_core: |
||
27 | * service_name: |
||
28 | * - "graviton.service.first.example" |
||
29 | * - "graviton.service.second.example" |
||
30 | * uri_whitelist: |
||
31 | * - "/path/to/first/" |
||
32 | * - "/path/to/second/" |
||
33 | * |
||
34 | * @return TreeBuilder |
||
35 | */ |
||
36 | public function getConfigTreeBuilder() |
||
53 | } |