1: <?php
2:
3: namespace Mapbender\CoreBundle\Component;
4:
5: /**
6: * InstanceLayer
7: *
8: * @author Paul Schmidt
9: */
10: interface InstanceLayerIn
11: {
12:
13: /**
14: * Creates the mapbender configuration.
15: * @return array configuration parameters
16: */
17: public function getConfiguration();
18:
19: }
20:
21: ?>
22: