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_zoom_select.php
parent4d6235ebe29f7e47220761ce96499aed0b3dd28f (diff)
Move DI classes to PhpMyAdmin namespace
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'tbl_zoom_select.php')
-rw-r--r--tbl_zoom_select.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tbl_zoom_select.php b/tbl_zoom_select.php
index 4983ad2877..5d73a6460e 100644
--- a/tbl_zoom_select.php
+++ b/tbl_zoom_select.php
@@ -7,6 +7,8 @@
*
* @package PhpMyAdmin
*/
+
+use PhpMyAdmin\Di\Container;
use PhpMyAdmin\Response;
/**
@@ -15,7 +17,7 @@ use PhpMyAdmin\Response;
require_once './libraries/common.inc.php';
require_once 'libraries/tbl_common.inc.php';
-$container = \PMA\libraries\di\Container::getDefaultContainer();
+$container = Container::getDefaultContainer();
$container->factory('PhpMyAdmin\Controllers\Table\TableSearchController');
$container->alias(
'TableSearchController', 'PhpMyAdmin\Controllers\Table\TableSearchController'