Move PMA\SystemDatabase to PMA\libraries\SystemDatabase.

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
This commit is contained in:
Hugues Peccatte 2015-08-29 23:20:25 +02:00
parent 5bc3a665fa
commit 41c571dbeb
3 changed files with 3 additions and 5 deletions

View File

@ -7,8 +7,6 @@
*/
namespace PMA\libraries;
use PMA\SystemDatabase;
require_once './libraries/logging.lib.php';
require_once './libraries/util.lib.php';

View File

@ -1,11 +1,11 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* hold PMA\SystemDatabase class
* hold PMA\libraries\SystemDatabase class
*
* @package PMA
*/
namespace PMA;
namespace PMA\libraries;
require_once 'libraries/database_interface.inc.php';

View File

@ -64,7 +64,7 @@ class PMA_SystemDatabaseTest extends PHPUnit_Framework_TestCase
)
);
$this->sysDb = new PMA\SystemDatabase($dbi);
$this->sysDb = new PMA\libraries\SystemDatabase($dbi);
}
/**