1: <?php
2:
3: /*
4: * This file is part of the Mapbender 3 project.
5: *
6: * For the full copyright and license information, please view the LICENSE
7: * file that was distributed with this source code.
8: */
9:
10: namespace Mapbender\KmlBundle;
11:
12: use Mapbender\CoreBundle\Component\MapbenderBundle;
13:
14: /**
15: * KmlBundle.
16: *
17: * @author Christian Wygoda <christian.wygoda@wheregroup.com>
18: */
19: class MapbenderKmlBundle extends MapbenderBundle {
20:
21: /**
22: * @inheritdoc
23: */
24: public function getElements()
25: {
26: return array(
27: 'Mapbender\KmlBundle\Element\KmlExport'
28: );
29: }
30:
31: }
32: