Update the tools to use the new namespaces

This commit is contained in:
2021-05-10 15:04:36 +02:00
parent eb30d8ef97
commit 03ede5c375
4 changed files with 20 additions and 20 deletions

View File

@@ -5,7 +5,7 @@
* @author Dominique Fournier <dominique@fournier38.fr>
*/
require_once ("domframework/dblayeroo.php");
require_once (__DIR__."/../src/Dblayeroo.php");
/** modelGraph
* Allow to create the relational graph of an existing database
@@ -32,7 +32,7 @@ class modelgraph
// {{{
{
$this->output = $output;
$this->db = new \dblayeroo ($dsn, $username, $password);
$this->db = new Domframework\Dblayeroo ($dsn, $username, $password);
$this->graphvizCommande ();
}
// }}}