1 | <?php |
||
15 | class Configuration implements ConfigurationInterface |
||
16 | { |
||
17 | const ROOT_NODE = 'gpslab_geoip'; |
||
18 | |||
19 | /** |
||
20 | * Config tree builder. |
||
21 | * |
||
22 | * Example config: |
||
23 | * |
||
24 | * gpslab_geoip: |
||
25 | * cache: '%kernel.cache_dir%/GeoLite2-City.mmdb' |
||
26 | * url: 'https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz' |
||
27 | * locales: [ '%locale%' ] |
||
28 | * |
||
29 | * @return TreeBuilder |
||
30 | */ |
||
31 | 1 | public function getConfigTreeBuilder() |
|
63 | } |
||
64 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.