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/mail/EmailNotificationTest.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/mail/EmailNotificationTest.php')
-rw-r--r-- | tests/phpunit/includes/mail/EmailNotificationTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/phpunit/includes/mail/EmailNotificationTest.php b/tests/phpunit/includes/mail/EmailNotificationTest.php index 9991756ad261..a745491e89f5 100644 --- a/tests/phpunit/includes/mail/EmailNotificationTest.php +++ b/tests/phpunit/includes/mail/EmailNotificationTest.php @@ -10,6 +10,7 @@ use MediaWiki\Title\Title; */ class EmailNotificationTest extends MediaWikiIntegrationTestCase { + /** @var EmailNotification */ protected $emailNotification; protected function setUp(): void { |