| 1 | <?php |
||
| 15 | class Configuration implements ConfigurationInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Config tree builder. |
||
| 19 | * |
||
| 20 | * Example config: |
||
| 21 | * |
||
| 22 | * gpslab_date: |
||
| 23 | * time_zone: 'Europe/Moscow' |
||
| 24 | * cookie: |
||
| 25 | * used: true |
||
| 26 | * name: '_time_zone_name' |
||
| 27 | * offset: '_time_zone_offset' |
||
| 28 | * |
||
| 29 | * @return TreeBuilder |
||
| 30 | */ |
||
| 31 | 1 | public function getConfigTreeBuilder() |
|
| 59 | } |
||
| 60 |