diff options
author | Fomafix <fomafix@googlemail.com> | 2024-11-19 06:57:29 +0000 |
---|---|---|
committer | Fomafix <fomafix@googlemail.com> | 2024-11-19 07:01:18 +0000 |
commit | 1205872d771e14c94d422a8af731ea19b3b2f285 (patch) | |
tree | 1e84056a0e6ee310d25bfd6105f2eb69a25af005 /tests/phpunit/includes/api/query/ApiQueryUserContribsTest.php | |
parent | b5c9e2710d8e800bf9d0fb06018e180e8862073e (diff) | |
download | mediawikicore-1205872d771e14c94d422a8af731ea19b3b2f285.tar.gz mediawikicore-1205872d771e14c94d422a8af731ea19b3b2f285.zip |
PHPUnit: Use FQCN with leading backslash in @covers annotation
https://docs.phpunit.de/en/11.4/annotations.html#covers recommends:
> Please note that this annotation requires a fully-qualified class
> name (FQCN). To make this more obvious to the reader, it is
> recommended to use a leading backslash (even if this not required for
> the annotation to work correctly).
Change-Id: I7eb4b997346387e5799fa27a61ab317573124fd0
Diffstat (limited to 'tests/phpunit/includes/api/query/ApiQueryUserContribsTest.php')
-rw-r--r-- | tests/phpunit/includes/api/query/ApiQueryUserContribsTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/api/query/ApiQueryUserContribsTest.php b/tests/phpunit/includes/api/query/ApiQueryUserContribsTest.php index 0bb573a31c96..679472dda0e7 100644 --- a/tests/phpunit/includes/api/query/ApiQueryUserContribsTest.php +++ b/tests/phpunit/includes/api/query/ApiQueryUserContribsTest.php @@ -13,7 +13,7 @@ use MediaWiki\User\UserRigorOptions; * @group API * @group Database * @group medium - * @covers MediaWiki\Api\ApiQueryUserContribs + * @covers \MediaWiki\Api\ApiQueryUserContribs */ class ApiQueryUserContribsTest extends ApiTestCase { |