mediawiki-extensions-Discus.../tests/phpunit
Bartosz Dziewoński 69e8e948b2 Remove now redundant PHPDoc blocks
MediaWiki's PHPCS plugin requires documentation comments on all
methods, unless those methods are fully typed (all parameters and
return value).

It turns out that almost all of our methods are fully typed already.

Procedure:

1. Find: \*(\s*\*\s*(@param \??[\w\\]+(\|null)? &?\$\w+|@return \??[\w\\]+(\|null)?)\n)+\s*\*/
   Replace with: */
   This deletes type annotations, except those not representable
   as PHP type hints such as union types `a|b` or typed arrays `a[]`,
   or those with documentation beyond type hints, or those on
   functions with any other annotations.

2. Find: /\*\*/\n\s*
   Replace with nothing
   This deletes the remaining comments on methods that had no prose
   documentation.

3. Undo all changes that PHPCS complains about (those comments
   were not redundant)

4. Review the diff carefully, these regexps are imprecise :)

Change-Id: Ic82e8b23f2996f44951208dbd9cfb4c8e0738dac
2024-03-10 23:53:04 +00:00
..
integration tests: Fix tests when LiquidThreads is also installed 2023-12-27 23:07:24 +01:00
unit Create HookRunner class and the hook handler interface 2023-06-04 20:12:56 +02:00
CommentFormatterTest.php Only include one set of DiscussionTools buttons in the page HTML 2024-03-01 16:51:17 +00:00
CommentModifierTest.php Avoid global state in tests involving CommentParser 2023-12-11 22:19:14 +01:00
CommentParserTest.php Remove now redundant PHPDoc blocks 2024-03-10 23:53:04 +00:00
CommentUtilsTest.php Fix PHP getTitleFromUrl() when $wgArticlePath is '/$1' 2024-02-24 02:03:17 +01:00
ContentThreadItemTest.php Avoid global state in tests involving CommentParser 2023-12-11 22:19:14 +01:00
EventDispatcherTest.php Avoid global state in tests involving CommentParser 2023-12-11 22:19:14 +01:00
IntegrationTestCase.php Avoid global state in tests involving CommentParser 2023-12-11 22:19:14 +01:00
LanguageDataTest.php tests: Make PHPUnit data providers static 2023-05-20 15:57:13 +02:00
MockCommentFormatter.php Remove now redundant PHPDoc blocks 2024-03-10 23:53:04 +00:00
MockEventDispatcher.php Remove now redundant PHPDoc blocks 2024-03-10 23:53:04 +00:00
MockLanguageData.php Remove now redundant PHPDoc blocks 2024-03-10 23:53:04 +00:00
MockSubscriptionStore.php Add various, more specific type hints 2023-06-09 13:44:42 +02:00
ServiceWiringTest.php tests: Make PHPUnit data providers static 2023-05-20 15:57:13 +02:00
TestUtils.php Remove now redundant PHPDoc blocks 2024-03-10 23:53:04 +00:00
ThreadItemStoreTest.php Add first basic tests for ThreadItemStore::find*() methods 2024-02-03 23:14:08 +01:00