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:
authorHugues Peccatte <hugues.peccatte@gmail.com>2015-09-01 23:02:22 +0300
committerHugues Peccatte <hugues.peccatte@gmail.com>2015-09-01 23:02:22 +0300
commitedf0dfa179c75de362f39cbfeac77225f26f7206 (patch)
treeaed17868f1fa5d2ef9db3d1c491feb0cf2ce950e /tbl_relation.php
parent5207ba43a72b66fd084928a1a613b1a640091177 (diff)
Add missing 'use'.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'tbl_relation.php')
-rw-r--r--tbl_relation.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tbl_relation.php b/tbl_relation.php
index bcc5beab26..a7122b101a 100644
--- a/tbl_relation.php
+++ b/tbl_relation.php
@@ -19,6 +19,7 @@
*/
namespace PMA;
+use PMA\libraries\controllers\table\TableRelationController;
use PMA\libraries\Response;
use PMA\libraries\Table;
use PMA\libraries\Util;
@@ -73,6 +74,6 @@ if ($cfgRelation['displaywork']) {
$dependency_definitions['disp'] = 'asas';
}
-/** @var PMA\libraries\controllers\table\TableRelationController $controller */
+/** @var TableRelationController $controller */
$controller = $container->get('TableRelationController', $dependency_definitions);
$controller->indexAction();