Created
December 17, 2011 14:31
-
-
Save Ivoz/1490341 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 | |
class DATABASE_CONFIG { | |
public $dev = array( | |
'datasource' => 'Database/Mysql', | |
'persistent' => false, | |
'host' => 'localhost', | |
'login' => 'cake', | |
'password' => 'cakephp', | |
'database' => 'cake_noteven', | |
); | |
public $default; | |
function __construct() { | |
$this->default = $this->dev; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment