Skip to content

Instantly share code, notes, and snippets.

@Ivoz
Created December 17, 2011 14:31
Show Gist options
  • Save Ivoz/1490341 to your computer and use it in GitHub Desktop.
Save Ivoz/1490341 to your computer and use it in GitHub Desktop.
<?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