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