From 561e365ff1ba9941ff33bd63a060b3cc03f67cfe Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 22 Jul 2024 16:39:26 +0200 Subject: [PATCH] Fix warning --- test/phpunit/LangTest.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/phpunit/LangTest.php b/test/phpunit/LangTest.php index 7f7872351b4..c9b50c7857a 100644 --- a/test/phpunit/LangTest.php +++ b/test/phpunit/LangTest.php @@ -107,9 +107,8 @@ class LangTest extends CommonClassTest * testLang * @dataProvider langDataProvider * - * @param $code Language code for which to verify translations - * - * @return void + * @param string $code Language code for which to verify translations + * @return void */ public function testLang($code): void { @@ -234,7 +233,6 @@ class LangTest extends CommonClassTest * @param string $key Key for translation * @param ?string $param1 Parameter 1 for translation * @param ?string $param2 Parameter 2 for translation - * * @return string */ public function testTrans($description, $langcode, $dict, $expected, $key, $param1 = null, $param2 = null)