domci update

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3859 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2017-08-01 13:43:40 +00:00
parent 3bda16ce6c
commit a8ddee5833
2 changed files with 14 additions and 4 deletions

View File

@@ -1,8 +1,10 @@
#!/usr/bin/php
<?php
// SQL Migrate
/** SQL Migrate
/** DomFramework
* @package domframework
* @author Dominique Fournier <dominique@fournier38.fr>
*
* SQL Migrate
* This tool allow to migrate the data from one SQL database to another.
* The DB engine can also be different.
*
@@ -16,8 +18,12 @@ require_once ("domframework/dblayeroo.php");
require_once ("domframework/getopts.php");
require_once ("domframework/config.php");
/** Manage the configuration file
*/
class configuration extends \config
{
/** The constructor of the configuration set the differents params
*/
function __construct ()
{
$this->default = array (
@@ -42,8 +48,12 @@ class configuration extends \config
}
}
/** The main class
*/
class main
{
/** The constructor of the class do the main job
*/
public function __construct ()
{
global $argv;