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-01 02:04:22 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-07-01 05:44:10 +0300
commit119563b7ea727f054c7bd9b4bc0f35831eb06712 (patch)
tree80e80fdd280f411ae352544d0b8721039b6e4fea /tbl_select.php
parentb46a08eb8525216bd0d7b8ad4eab1410b44188b0 (diff)
Move classes to PhpMyAdmin namespace
- Move OpenDocument to PhpMyAdmin namespace - Move OutputBuffering to PhpMyAdmin namespace - Move Partition to PhpMyAdmin namespace - Move Pdf class to PhpMyAdmin namespace - Move RecentFavoriteTable to PhpMyAdmin namespace - Move Response to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'tbl_select.php')
-rw-r--r--tbl_select.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tbl_select.php b/tbl_select.php
index a077b80da6..4a5d8625da 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -8,7 +8,7 @@
*
* @package PhpMyAdmin
*/
-use PMA\libraries\Response;
+use PhpMyAdmin\Response;
/**
* Gets some core libraries
@@ -23,8 +23,8 @@ $container->factory('PMA\libraries\controllers\table\TableSearchController');
$container->alias(
'TableSearchController', 'PMA\libraries\controllers\table\TableSearchController'
);
-$container->set('PMA\libraries\Response', Response::getInstance());
-$container->alias('response', 'PMA\libraries\Response');
+$container->set('PhpMyAdmin\Response', Response::getInstance());
+$container->alias('response', 'PhpMyAdmin\Response');
/* Define dependencies for the concerned controller */
$dependency_definitions = array(