Created
March 8, 2018 17:48
-
-
Save piiskop/7f94e4423e07da8d3a72eec892ae193a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace pupils; | |
/** | |
* This file includes just global constants and actions. | |
* Created on 2.10.2006 | |
* | |
* @author peacecop kalmer: <[email protected]> | |
*/ | |
class Configuration { | |
public const DB_HOST = 'localhost'; | |
public const DB_NAME = 'maks'; | |
public const DB_USER = 'maks'; | |
public const DB_PASS = 'f0a9404ca874ca18'; | |
public const BASE_FOLDER = '/data/projects/'; | |
public const CORE_FOLDER = Configuration::BASE_FOLDER . 'hard-core/'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment