diff options
author | thiemowmde <thiemo.kreuz@wikimedia.de> | 2024-05-06 09:52:06 +0200 |
---|---|---|
committer | thiemowmde <thiemo.kreuz@wikimedia.de> | 2024-05-10 13:53:15 +0200 |
commit | 52ddf3e8ceb53bed85226783cc3b1c6363712f07 (patch) | |
tree | db599198d83420a41d788b4456594365afe286e9 /tests/phpunit/mocks/json | |
parent | bc11d8072a47fdc2f9d3a60f78c09716948b626e (diff) | |
download | mediawikicore-52ddf3e8ceb53bed85226783cc3b1c6363712f07.tar.gz mediawikicore-52ddf3e8ceb53bed85226783cc3b1c6363712f07.zip |
Remove all @package comments
I don't think these do anything with the documentation generators
we currently use. Especially not in tests. How are tests part of a
"package" when the code is not?
Note how most of these are simply identical to the namespace. They
are most probably auto-generated by some IDEs but don't actually
mean anything.
Change-Id: I771b5f2041a8e3b077865c79cbebddbe028543d1
Diffstat (limited to 'tests/phpunit/mocks/json')
-rw-r--r-- | tests/phpunit/mocks/json/JsonUnserializableSubClass.php | 1 | ||||
-rw-r--r-- | tests/phpunit/mocks/json/JsonUnserializableSuperClass.php | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/tests/phpunit/mocks/json/JsonUnserializableSubClass.php b/tests/phpunit/mocks/json/JsonUnserializableSubClass.php index fdc17b245b77..7085b4ce075d 100644 --- a/tests/phpunit/mocks/json/JsonUnserializableSubClass.php +++ b/tests/phpunit/mocks/json/JsonUnserializableSubClass.php @@ -7,7 +7,6 @@ use MediaWiki\Json\JsonUnserializer; /** * Testing class for JsonUnserializer unit tests. - * @package MediaWiki\Tests\Json */ class JsonUnserializableSubClass extends JsonUnserializableSuperClass { use JsonUnserializableTrait; diff --git a/tests/phpunit/mocks/json/JsonUnserializableSuperClass.php b/tests/phpunit/mocks/json/JsonUnserializableSuperClass.php index 8867b325c0df..246242b674d8 100644 --- a/tests/phpunit/mocks/json/JsonUnserializableSuperClass.php +++ b/tests/phpunit/mocks/json/JsonUnserializableSuperClass.php @@ -8,7 +8,6 @@ use MediaWiki\Json\JsonUnserializer; /** * Testing class for JsonUnserializer unit tests. - * @package MediaWiki\Tests\Json */ class JsonUnserializableSuperClass implements JsonUnserializable { use JsonUnserializableTrait; |