Files
geodb/geoapi/config/config.db.php
2013-06-27 10:55:07 +02:00

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";
}
?>