40 lines
588 B
PHP
40 lines
588 B
PHP
<?php
|
|
|
|
namespace config;
|
|
|
|
/**
|
|
* This clas is an container for the DBConf
|
|
*
|
|
* @author stubbfel
|
|
* @since 20.06.2013
|
|
*/
|
|
class DBConfig {
|
|
|
|
/**
|
|
* Address of the sqlserver
|
|
* @var string
|
|
*/
|
|
public static $sqlServer = "localhost";
|
|
|
|
/**
|
|
* name of the database
|
|
* @var string
|
|
*/
|
|
public static $sqlDBName = "geoDB";
|
|
|
|
/**
|
|
* user of the database
|
|
* @var string
|
|
*/
|
|
public static $sqlDBUser = "geoDB";
|
|
|
|
/**
|
|
* password of the database
|
|
* @var string
|
|
*/
|
|
public static $sqlDBUserPW = "VZrSAYvmcrntQ97b";
|
|
|
|
}
|
|
|
|
?>
|