diff options
author | Umherirrender <umherirrender_de.wp@web.de> | 2024-09-13 22:51:51 +0200 |
---|---|---|
committer | Umherirrender <umherirrender_de.wp@web.de> | 2024-09-18 17:25:42 +0000 |
commit | 41f6d9eee4b0a7f66bf001f6797a43af8365d02f (patch) | |
tree | 9c3f0e58970bf2ace5a83829124be3e8b00086c6 /tests/phpunit/includes/import/ImportLinkCacheIntegrationTest.php | |
parent | 7b4e02a2bd114e6d9e56c2369137ff78f5ef4422 (diff) | |
download | mediawikicore-41f6d9eee4b0a7f66bf001f6797a43af8365d02f.tar.gz mediawikicore-41f6d9eee4b0a7f66bf001f6797a43af8365d02f.zip |
tests: Add missing documentation to class properties
Add doc-typehints to class properties found by the PropertyDocumentation
sniff to improve the documentation.
Once the sniff is enabled it avoids that new code is missing type
declarations. This is focused on documentation and does not change code.
Change-Id: Ifc27750207edc09e94af030d882b6f1a5369cf98
Diffstat (limited to 'tests/phpunit/includes/import/ImportLinkCacheIntegrationTest.php')
-rw-r--r-- | tests/phpunit/includes/import/ImportLinkCacheIntegrationTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/phpunit/includes/import/ImportLinkCacheIntegrationTest.php b/tests/phpunit/includes/import/ImportLinkCacheIntegrationTest.php index 7d663f2759c5..8546ecb8f616 100644 --- a/tests/phpunit/includes/import/ImportLinkCacheIntegrationTest.php +++ b/tests/phpunit/includes/import/ImportLinkCacheIntegrationTest.php @@ -1,6 +1,7 @@ <?php use MediaWiki\Context\RequestContext; +use MediaWiki\Status\Status; use MediaWiki\Title\Title; /** @@ -16,6 +17,7 @@ use MediaWiki\Title\Title; */ class ImportLinkCacheIntegrationTest extends MediaWikiIntegrationTestCase { + /** @var Status */ private $importStreamSource; protected function setUp(): void { |