Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-07-16 21:25:59 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-07-16 21:25:59 +0300
commitfeb200a000aad1e07d30c59ea3d9b84ec2fcaa96 (patch)
tree710741a35fac8b58030026075b0623ee57c36bd1 /tbl_indexes.php
parent4d6235ebe29f7e47220761ce96499aed0b3dd28f (diff)
Move DI classes to PhpMyAdmin namespace
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'tbl_indexes.php')
-rw-r--r--tbl_indexes.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/tbl_indexes.php b/tbl_indexes.php
index 81057861e6..a86d50d06b 100644
--- a/tbl_indexes.php
+++ b/tbl_indexes.php
@@ -6,15 +6,14 @@
* @package PhpMyAdmin
*/
-namespace PMA;
-
use PhpMyAdmin\Controllers\Table\TableIndexesController;
+use PhpMyAdmin\Di\Container;
use PhpMyAdmin\Index;
use PhpMyAdmin\Response;
require_once 'libraries/common.inc.php';
-$container = libraries\di\Container::getDefaultContainer();
+$container = Container::getDefaultContainer();
$container->factory('PhpMyAdmin\Controllers\Table\TableIndexesController');
$container->alias(
'TableIndexesController',