1: <?php
2:
3: namespace config;
4:
5: /**
6: * This clas is an container for the DBConf
7: *
8: * @author stubbfel
9: * @since 20.06.2013
10: */
11: class DBConfig {
12:
13: /**
14: * Address of the sqlserver
15: * @var string
16: */
17: public static $sqlServer = "localhost";
18:
19: /**
20: * name of the database
21: * @var string
22: */
23: public static $sqlDBName = "geodb";
24:
25: /**
26: * user of the database
27: * @var string
28: */
29: public static $sqlDBUser = "geoDB";
30:
31: /**
32: * password of the database
33: * @var string
34: */
35: public static $sqlDBUserPW = "VZrSAYvmcrntQ97b";
36:
37: }
38:
39: ?>
40: