Skip to content

Commit

Permalink
Reorganize properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jukka Svahn committed Dec 16, 2013
1 parent 394c10d commit 6dac92d
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions src/Rah/Danpu/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,24 +113,6 @@ class Config

public $dsn;

/**
* The database name.
*
* @var string
* @deprecated 2.2.0
*/

public $db;

/**
* The hostname.
*
* @var string
* @deprecated 2.2.0
*/

public $host = 'localhost';

/**
* The username used to connect to the database.
*
Expand Down Expand Up @@ -219,6 +201,23 @@ class Config

public $ignore = array();

/**
* A prefix used by tables, views and triggers based on the target table.
*
* Taken backup will only include items that start
* with the prefix.
*
* <code>
* $dump = new \Rah\Danpu\Dump();
* $dump->prefix('user_');
* </code>
*
* @var string
* @since 2.6.0
*/

public $prefix;

/**
* Temporary directory.
*
Expand Down Expand Up @@ -294,23 +293,6 @@ class Config

public $triggers = true;

/**
* A prefix used by tables, views and triggers based on the target table.
*
* Taken backup will only include items that start
* with the prefix.
*
* <code>
* $dump = new \Rah\Danpu\Dump();
* $dump->prefix('user_');
* </code>
*
* @var string
* @since 2.6.0
*/

public $prefix;

/**
* Disables foreign key checks.
*
Expand Down Expand Up @@ -375,4 +357,22 @@ class Config
*/

public $disableAutoCommit = false;

/**
* The database name.
*
* @var string
* @deprecated 2.2.0
*/

public $db;

/**
* The hostname.
*
* @var string
* @deprecated 2.2.0
*/

public $host = 'localhost';
}

0 comments on commit 6dac92d

Please sign in to comment.