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 /server_collations.php
parent4d6235ebe29f7e47220761ce96499aed0b3dd28f (diff)
Move DI classes to PhpMyAdmin namespace
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'server_collations.php')
-rw-r--r--server_collations.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/server_collations.php b/server_collations.php
index fd70ce355d..0c9d9320c5 100644
--- a/server_collations.php
+++ b/server_collations.php
@@ -1,20 +1,18 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
-
/**
* Handles server charsets and collations page.
*
* @package PhpMyAdmin
*/
-namespace PMA;
-
use PhpMyAdmin\Controllers\Server\ServerCollationsController;
+use PhpMyAdmin\Di\Container;
use PhpMyAdmin\Response;
require_once 'libraries/common.inc.php';
-$container = libraries\di\Container::getDefaultContainer();
+$container = Container::getDefaultContainer();
$container->factory(
'PhpMyAdmin\Controllers\Server\ServerCollationsController'
);