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 <mauricio@fauth.dev>2020-05-13 06:22:52 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-05-13 06:23:28 +0300
commita64393e7f53a8e7691a457d7176e89d6b3301112 (patch)
treecbffe82c377ffb68e87542e2a15239ef11f90292 /test/bootstrap-dist.php
parent454ed6c785cff70db829897810b97fa58fb78ade (diff)
Fix some coding standard issues
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'test/bootstrap-dist.php')
-rw-r--r--test/bootstrap-dist.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/bootstrap-dist.php b/test/bootstrap-dist.php
index e138c08076..f2bf432ba8 100644
--- a/test/bootstrap-dist.php
+++ b/test/bootstrap-dist.php
@@ -6,6 +6,7 @@ declare(strict_types=1);
use PhpMyAdmin\Config;
use PhpMyAdmin\DatabaseInterface;
+use PhpMyAdmin\Language;
use PhpMyAdmin\LanguageManager;
use PhpMyAdmin\MoTranslator\Loader;
use PhpMyAdmin\Tests\Stubs\DbiDummy;
@@ -83,7 +84,7 @@ define('PMA_MAJOR_VERSION', $GLOBALS['PMA_Config']->get('PMA_MAJOR_VERSION'));
// phpcs:enable
/* Ensure default language is active */
-/** @var \PhpMyAdmin\Language $languageEn */
+/** @var Language $languageEn */
$languageEn = LanguageManager::getInstance()->getLanguage('en');
$languageEn->activate();