diff --git a/core/modules/big_pipe/tests/modules/big_pipe_regression_test/src/BigPipeRegressionTestController.php b/core/modules/big_pipe/tests/modules/big_pipe_regression_test/src/BigPipeRegressionTestController.php
index fe5a0e00ce46557a45444cdb1347f2ce90cec454..2d894da837ebe7ec364c0ffe9c7810d994203f53 100644
--- a/core/modules/big_pipe/tests/modules/big_pipe_regression_test/src/BigPipeRegressionTestController.php
+++ b/core/modules/big_pipe/tests/modules/big_pipe_regression_test/src/BigPipeRegressionTestController.php
@@ -87,6 +87,7 @@ public static function largeContentBuilder() {
    * #lazy_builder callback; builds <time> markup with current time.
    *
    * @return array
+   *   Render array with a <time> markup with current time and cache settings.
    */
   public static function currentTime() {
     return [
diff --git a/core/modules/big_pipe/tests/modules/big_pipe_test/src/BigPipePlaceholderTestCases.php b/core/modules/big_pipe/tests/modules/big_pipe_test/src/BigPipePlaceholderTestCases.php
index 451523e0941a85901fa8784778776f3973f45dba..48471501c405b7244df50a9fb36d92f5ca05a598 100644
--- a/core/modules/big_pipe/tests/modules/big_pipe_test/src/BigPipePlaceholderTestCases.php
+++ b/core/modules/big_pipe/tests/modules/big_pipe_test/src/BigPipePlaceholderTestCases.php
@@ -32,6 +32,7 @@ class BigPipePlaceholderTestCases {
    *   Optional. Necessary to get the embedded AJAX/HTML responses.
    *
    * @return \Drupal\big_pipe_test\BigPipePlaceholderTestCase[]
+   *   An array of placeholder test cases.
    */
   public static function cases(?ContainerInterface $container = NULL, ?AccountInterface $user = NULL) {
     // Define the two types of cacheability that we expect to see. These will be
diff --git a/core/modules/big_pipe/tests/modules/big_pipe_test/src/BigPipeTestController.php b/core/modules/big_pipe/tests/modules/big_pipe_test/src/BigPipeTestController.php
index 207d60a9e753214326a545893c2816f3af3ad0a2..c625f7d2d23d7c92d29000e057ce33051df9bd98 100644
--- a/core/modules/big_pipe/tests/modules/big_pipe_test/src/BigPipeTestController.php
+++ b/core/modules/big_pipe/tests/modules/big_pipe_test/src/BigPipeTestController.php
@@ -19,6 +19,7 @@ class BigPipeTestController implements TrustedCallbackInterface {
    * Returns all BigPipe placeholder test case render arrays.
    *
    * @return array
+   *   Render array containing various Big Pipe placeholder test cases.
    */
   public function test() {
     $has_session = \Drupal::service('session_configuration')->hasSession(\Drupal::requestStack()->getMainRequest());
@@ -63,6 +64,7 @@ public function test() {
 
   /**
    * @return array
+   *   List of all BigPipe placeholder test cases.
    */
   public static function nope() {
     return ['#markup' => '<p>Nope.</p>'];
@@ -74,6 +76,7 @@ public static function nope() {
    * @see \Drupal\Tests\big_pipe\Functional\BigPipeTest::testBigPipeMultiOccurrencePlaceholders()
    *
    * @return array
+   *   Render array with multiple placeholders using a lazy builder.
    */
   public function multiOccurrence() {
     return [
@@ -96,6 +99,9 @@ public function multiOccurrence() {
    * A page with placeholder preview.
    *
    * @return array[]
+   *   A render array with two containers:
+   *   - 'user_container': Loads the user’s display name via a lazy builder.
+   *   - 'user_links_container': Loads user links with a placeholder preview.
    */
   public function placeholderPreview() {
     return [
@@ -129,6 +135,8 @@ public function placeholderPreview() {
    * Note: does not actually use current time, that would complicate testing.
    *
    * @return array
+   *   A render array containing a <time> element with a predefined date
+   *   and disabled caching for dynamic rendering.
    */
   public static function currentTime() {
     return [
@@ -141,6 +149,8 @@ public static function currentTime() {
    * #lazy_builder callback; suspends its own execution then returns markup.
    *
    * @return array
+   *   A render array with a pig-themed message wrapped in a <span>,
+   *   and caching disabled to ensure dynamic rendering.
    */
   public static function piggy(): array {
     // Immediately call Fiber::suspend(), so that other placeholders are
@@ -159,6 +169,8 @@ public static function piggy(): array {
    * #lazy_builder callback; says "hello" or "hi".
    *
    * @return array
+   *   A render array with a marquee message using BigPipeMarkup,
+   *   with caching disabled and a custom cache tag.
    */
   public static function helloOrHi() {
     return [
@@ -185,6 +197,7 @@ public static function exception() {
    * @see \Drupal\big_pipe_test\EventSubscriber\BigPipeTestSubscriber::onRespondTriggerException()
    *
    * @return array
+   *   A render array with plain text for testing BigPipe error handling.
    */
   public static function responseException() {
     return ['#plain_text' => BigPipeTestSubscriber::CONTENT_TRIGGER_EXCEPTION];
diff --git a/core/modules/big_pipe/tests/src/Functional/BigPipeTest.php b/core/modules/big_pipe/tests/src/Functional/BigPipeTest.php
index 1fac58c811528928dac2d8cfeaf4a4529922d76c..e6e2784fc11ee2261ddf4235fbe5262295a149a3 100644
--- a/core/modules/big_pipe/tests/src/Functional/BigPipeTest.php
+++ b/core/modules/big_pipe/tests/src/Functional/BigPipeTest.php
@@ -461,6 +461,7 @@ protected function setCsrfTokenSeedInTestEnvironment(): void {
 
   /**
    * @return \Drupal\big_pipe_test\BigPipePlaceholderTestCase[]
+   *   An array of test cases.
    */
   protected function getTestCases($has_session = TRUE) {
     return BigPipePlaceholderTestCases::cases($this->container, $this->rootUser);
diff --git a/core/modules/big_pipe/tests/src/Unit/Render/FiberPlaceholderTest.php b/core/modules/big_pipe/tests/src/Unit/Render/FiberPlaceholderTest.php
index 33e3afe0177597ad91bd0d25dbfcc2682ca637f5..b64095ecbdc12847f1f118dc0645c21123575105 100644
--- a/core/modules/big_pipe/tests/src/Unit/Render/FiberPlaceholderTest.php
+++ b/core/modules/big_pipe/tests/src/Unit/Render/FiberPlaceholderTest.php
@@ -121,6 +121,7 @@ class TurtleLazyBuilder implements TrustedCallbackInterface {
    * Suspends its own execution twice to simulate long operation.
    *
    * @return array
+   *   The lazy builder callback.
    */
   public static function turtle(): array {
     if (\Fiber::getCurrent() !== NULL) {
diff --git a/core/modules/block/tests/src/FunctionalJavascript/BlockFilterTest.php b/core/modules/block/tests/src/FunctionalJavascript/BlockFilterTest.php
index 8914669d72c0627fb14ea5dc4be6048c8a00d2c5..3502e65a1959137a90881df5cd17f84c1b79ad49 100644
--- a/core/modules/block/tests/src/FunctionalJavascript/BlockFilterTest.php
+++ b/core/modules/block/tests/src/FunctionalJavascript/BlockFilterTest.php
@@ -89,6 +89,7 @@ public function testBlockFilter(): void {
    *   An array of node elements.
    *
    * @return \Behat\Mink\Element\NodeElement[]
+   *   An array of visible elements.
    */
   protected function filterVisibleElements(array $elements): array {
     $elements = array_filter($elements, function (NodeElement $element) {
diff --git a/core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php b/core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php
index 79802e1e376a61d0679a8ccc4ec910f00d7693fe..5a8f88d710114a3e2403431977b6d1c55d0162b0 100644
--- a/core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php
+++ b/core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php
@@ -60,6 +60,8 @@ public function testAutocompleteSuggestions($string, $suggestions): void {
    * Data provider for testAutocompleteSuggestions().
    *
    * @return array
+   *   An array of test cases, each containing an input string and
+   *   expected autocomplete suggestions.
    */
   public static function providerTestAutocompleteSuggestions() {
     $test_parameters = [];
diff --git a/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestBase.php b/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestBase.php
index 9d86c0ee392842e110a0e1837b48a5045e8f5778..427a74a7054c99d15ebef83ad3366b205f03e9c4 100644
--- a/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestBase.php
+++ b/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestBase.php
@@ -51,6 +51,7 @@ abstract class ImageTestBase extends CKEditor5TestBase {
    * Provides the relevant image attributes.
    *
    * @return string[]
+   *   An associative array with the image source, width, and height.
    */
   protected function imageAttributes() {
     return [
@@ -67,6 +68,7 @@ protected function imageAttributes() {
    *   Reverse attributes when printing them.
    *
    * @return string
+   *   A space-separated string of image attributes.
    */
   protected function imageAttributesAsString($reverse = FALSE) {
     $string = [];
diff --git a/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestProviderTrait.php b/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestProviderTrait.php
index 91ff49e91868fd8f78625efe52d66ba57fe3c4ba..9e7571bc79076da27c66c760eb37cb83e456a8a0 100644
--- a/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestProviderTrait.php
+++ b/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestProviderTrait.php
@@ -243,6 +243,7 @@ public function testWidth(string $width): void {
    * Data provider for ::testWidth().
    *
    * @return string[][]
+   *   An array of test cases, each with a width value.
    */
   public static function providerWidth(): array {
     return [
diff --git a/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestTestBase.php b/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestTestBase.php
index c60b8d4e8f9a2059200e8707cf92b0c5056133ee..070ae0e90cadb7066e841e7decdbd44f84227a1c 100644
--- a/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestTestBase.php
+++ b/core/modules/ckeditor5/tests/src/FunctionalJavascript/ImageTestTestBase.php
@@ -113,6 +113,7 @@ function (ConstraintViolationInterface $v) {
    * Provides the relevant image attributes.
    *
    * @return string[]
+   *   Default image attributes for tests.
    */
   protected function imageAttributes(): array {
     return [
diff --git a/core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php b/core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php
index c46c5588ac32a5040890a525e1a5583ca6a4a773..47ed0b6569b51967fd96f781aa83a7cec5eb473f 100644
--- a/core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php
+++ b/core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php
@@ -81,6 +81,8 @@ public function test(string $langcode, string $toolbar_item_name, string $toolba
    * Data provider for ensuring CKEditor 5 UI translations are loaded.
    *
    * @return string[][]
+   *   An array of language code, CKEditor 5 plugin name, and expected
+   *   translation.
    */
   public static function provider(): array {
     return [
diff --git a/core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php b/core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php
index 711354bd5b211013c161185d565f8775ca25ae47..227496d641912665ba0b2650a098d1c4626884dd 100644
--- a/core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php
+++ b/core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php
@@ -99,6 +99,7 @@ public function test(string $drupal_langcode, string $cke5_langcode, bool $is_mi
    * Provides a list of language code pairs.
    *
    * @return string[][]
+   *   An array of language code pairs.
    */
   public static function provider(): array {
     $random_langcode = Random::machineName();
diff --git a/core/modules/ckeditor5/tests/src/Unit/SmartDefaultSettingsTest.php b/core/modules/ckeditor5/tests/src/Unit/SmartDefaultSettingsTest.php
index c694c2870b45be15f885dda66f3dccfddb55485e..aeb866eaffd0afb23a7481b0657ea6b72cd94c97 100644
--- a/core/modules/ckeditor5/tests/src/Unit/SmartDefaultSettingsTest.php
+++ b/core/modules/ckeditor5/tests/src/Unit/SmartDefaultSettingsTest.php
@@ -38,6 +38,7 @@ public function testSurplusScore(HTMLRestrictions $surplus, HTMLRestrictions $ne
    * Data provider for testing computeSurplusScore().
    *
    * @return \Generator
+   *   Yields the data for testSurplusScore().
    */
   public static function providerSurplusScore(): \Generator {
     $needed = new HTMLRestrictions(['code' => FALSE]);
@@ -103,6 +104,7 @@ public function testCandidates(HTMLRestrictions $provided, HTMLRestrictions $sti
    * Data provider for testing getCandidates() and ::selectCandidate().
    *
    * @return \Generator
+   *   Yields the data for testCandidates().
    */
   public static function providerCandidates(): \Generator {
     $generate_definition = function (string $label_and_id, array $overrides): CKEditor5PluginDefinition {
diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d7/CommentEntityTranslationCheckRequirementsTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d7/CommentEntityTranslationCheckRequirementsTest.php
index 47dc5969acdb893a0e7387ceec89da490cf90ef6..26f84a0f1e36f050f19e5270f339a21f6854f902 100644
--- a/core/modules/comment/tests/src/Kernel/Migrate/d7/CommentEntityTranslationCheckRequirementsTest.php
+++ b/core/modules/comment/tests/src/Kernel/Migrate/d7/CommentEntityTranslationCheckRequirementsTest.php
@@ -47,6 +47,7 @@ public function testCheckRequirements($module): void {
    * Provides data for testCheckRequirements.
    *
    * @return string[][]
+   *   An array of module machine names.
    */
   public static function providerTestCheckRequirements() {
     return [
diff --git a/core/modules/config/tests/src/FunctionalJavascript/ConfigExportTest.php b/core/modules/config/tests/src/FunctionalJavascript/ConfigExportTest.php
index 4323a4b2ae369ce0acaf57402899f4b3e0fea8a3..2489d31ae95871f45e36a9cd5aa2f11971c6bade 100644
--- a/core/modules/config/tests/src/FunctionalJavascript/ConfigExportTest.php
+++ b/core/modules/config/tests/src/FunctionalJavascript/ConfigExportTest.php
@@ -64,6 +64,7 @@ protected function setUp(): void {
    *   Title of the block.
    *
    * @return \Drupal\block_content\Entity\BlockContent
+   *   The created block content entity.
    *
    * @throws \Drupal\Core\Entity\EntityStorageException
    */
diff --git a/core/modules/content_translation/tests/src/Kernel/ContentTranslationFieldSyncRevisionTest.php b/core/modules/content_translation/tests/src/Kernel/ContentTranslationFieldSyncRevisionTest.php
index 2e9ed9e26617c966ed67b1b660fee1b8916a57af..52418c280890a19e7d97c62b458559fb66564db5 100644
--- a/core/modules/content_translation/tests/src/Kernel/ContentTranslationFieldSyncRevisionTest.php
+++ b/core/modules/content_translation/tests/src/Kernel/ContentTranslationFieldSyncRevisionTest.php
@@ -480,6 +480,7 @@ protected function setUntranslatableFieldWidgetsDisplay($display): void {
 
   /**
    * @return \Drupal\Core\Entity\ContentEntityInterface
+   *   The saved entity.
    */
   protected function saveNewEntity() {
     /** @var \Drupal\Core\Entity\ContentEntityInterface $entity */
diff --git a/core/modules/datetime/tests/src/Functional/DateTestBase.php b/core/modules/datetime/tests/src/Functional/DateTestBase.php
index 6b128598a944d6a50758e55fe012bfb740d6f6e6..b7399930273cbdc711871fc1a0a3fb763cd8d27c 100644
--- a/core/modules/datetime/tests/src/Functional/DateTestBase.php
+++ b/core/modules/datetime/tests/src/Functional/DateTestBase.php
@@ -82,6 +82,7 @@ abstract class DateTestBase extends BrowserTestBase {
    * Returns the type of field to be tested.
    *
    * @return string
+   *   The field type to be tested.
    */
   abstract protected function getTestFieldType();
 
diff --git a/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterSettingsTest.php b/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterSettingsTest.php
index 75d2845c4774b8770f872010d4f38c6d90e73cd4..c44651dd6e320ba4a6d4c474b99d6e38c37cf564 100644
--- a/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterSettingsTest.php
+++ b/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterSettingsTest.php
@@ -43,6 +43,7 @@ public function testTransform($value, $destination_id, $expected_value): void {
    * The test data provider.
    *
    * @return array
+   *   An array of test data.
    */
   public static function dataProvider() {
     return [
diff --git a/core/modules/image/tests/src/Functional/ImageFieldValidateTest.php b/core/modules/image/tests/src/Functional/ImageFieldValidateTest.php
index afe4695687438ed4cf0eef76c2b1b3890e700285..8b15f60acade38846a45fc2507780c2bb52449e5 100644
--- a/core/modules/image/tests/src/Functional/ImageFieldValidateTest.php
+++ b/core/modules/image/tests/src/Functional/ImageFieldValidateTest.php
@@ -272,6 +272,7 @@ public static function providerTestEmpty() {
    *   The maximum width and height setting.
    *
    * @return array
+   *   List of field settings.
    */
   protected function getFieldSettings($min_resolution, $max_resolution): array {
     return [
diff --git a/core/modules/jsonapi/tests/modules/jsonapi_test_meta_events/src/EventSubscriber/MetaEventSubscriber.php b/core/modules/jsonapi/tests/modules/jsonapi_test_meta_events/src/EventSubscriber/MetaEventSubscriber.php
index a28716f0340809daafd449be17d969295f44e662..3315e025fcd9786ecb8e7d3087b9a6686490bb3d 100644
--- a/core/modules/jsonapi/tests/modules/jsonapi_test_meta_events/src/EventSubscriber/MetaEventSubscriber.php
+++ b/core/modules/jsonapi/tests/modules/jsonapi_test_meta_events/src/EventSubscriber/MetaEventSubscriber.php
@@ -29,8 +29,6 @@ public static function getSubscribedEvents(): array {
   /**
    * @param \Drupal\jsonapi\Events\CollectResourceObjectMetaEvent $event
    *   Event to be processed.
-   *
-   * @return void
    */
   public function addResourceObjectMeta(CollectResourceObjectMetaEvent $event): void {
     $config = \Drupal::state()->get('jsonapi_test_meta_events.object_meta', [
@@ -72,8 +70,6 @@ public function addResourceObjectMeta(CollectResourceObjectMetaEvent $event): vo
   /**
    * @param \Drupal\jsonapi\Events\CollectRelationshipMetaEvent $event
    *   Event to be processed.
-   *
-   * @return void
    */
   public function addRelationshipMeta(CollectRelationshipMetaEvent $event): void {
     $config = \Drupal::state()->get('jsonapi_test_meta_events.relationship_meta', [
@@ -138,6 +134,8 @@ public function addRelationshipMeta(CollectRelationshipMetaEvent $event): void {
 
   /**
    * @return string
+   *   The value 'yes' if the current user has an admin role, 'no' otherwise.
+   *
    * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
    * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
    */
diff --git a/core/modules/jsonapi/tests/src/Kernel/Normalizer/LinkCollectionNormalizerTest.php b/core/modules/jsonapi/tests/src/Kernel/Normalizer/LinkCollectionNormalizerTest.php
index a4cdb4f5444c568835bd64b83e0063810500fb53..2d15edb34802b2f6264d53c6da16582a618e645f 100644
--- a/core/modules/jsonapi/tests/src/Kernel/Normalizer/LinkCollectionNormalizerTest.php
+++ b/core/modules/jsonapi/tests/src/Kernel/Normalizer/LinkCollectionNormalizerTest.php
@@ -169,6 +169,7 @@ public function testLinkAccess($current_user_id, $edit_form_uid, $expected_link_
    * Provides test cases for testing link access checking.
    *
    * @return array[]
+   *   An array of test cases for testLinkAccess().
    */
   public static function linkAccessTestData() {
     return [
diff --git a/core/modules/language/tests/src/Functional/LanguageNegotiationInfoTest.php b/core/modules/language/tests/src/Functional/LanguageNegotiationInfoTest.php
index 14e55ed1b5a8d88624dfa6f9d2fe56c7977641d3..a1a760a48bb7bf70f0ed88a0b04ea0b79be4390d 100644
--- a/core/modules/language/tests/src/Functional/LanguageNegotiationInfoTest.php
+++ b/core/modules/language/tests/src/Functional/LanguageNegotiationInfoTest.php
@@ -45,6 +45,7 @@ protected function setUp(): void {
    * Returns the configurable language manager.
    *
    * @return \Drupal\language\ConfigurableLanguageManager
+   *   The language manager.
    */
   protected function languageManager() {
     return $this->container->get('language_manager');
diff --git a/core/modules/language/tests/src/Unit/Plugin/LanguageNegotiation/LanguageNegotiationTestBase.php b/core/modules/language/tests/src/Unit/Plugin/LanguageNegotiation/LanguageNegotiationTestBase.php
index e35731c47b9fa315bbe6ba78c05edf1a656fa2bb..07d825127e4258cc618c1cd31dcc3c078dcc227b 100644
--- a/core/modules/language/tests/src/Unit/Plugin/LanguageNegotiation/LanguageNegotiationTestBase.php
+++ b/core/modules/language/tests/src/Unit/Plugin/LanguageNegotiation/LanguageNegotiationTestBase.php
@@ -26,6 +26,7 @@ abstract protected function getPluginClass(): string;
    * Creates a @LanguageNegotiation plugin using the factory ::create method.
    *
    * @return \Drupal\language\LanguageNegotiationMethodInterface
+   *   The created language negotiation plugin.
    */
   protected function createLanguageNegotiationPlugin(array $configuration = [], $plugin_definition = NULL) {
     $class = $this->getPluginClass();
diff --git a/core/modules/media/tests/src/Functional/FieldFormatter/OEmbedFormatterTest.php b/core/modules/media/tests/src/Functional/FieldFormatter/OEmbedFormatterTest.php
index 88c2cbf8e01dc126f834b2d825c07f748b1e59f2..80d0a653d162ea7ec9a922cf89bb898cd3db0e4e 100644
--- a/core/modules/media/tests/src/Functional/FieldFormatter/OEmbedFormatterTest.php
+++ b/core/modules/media/tests/src/Functional/FieldFormatter/OEmbedFormatterTest.php
@@ -58,6 +58,7 @@ protected function setUp(): void {
    * @see ::testRender()
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerRender() {
     return [
diff --git a/core/modules/media/tests/src/Functional/ResourceFetcherTest.php b/core/modules/media/tests/src/Functional/ResourceFetcherTest.php
index ec327a73ac73c8fcbd8da891499d2c8ace7f4545..8542b3a2a4dbb58025992d6506cea6b087f20435 100644
--- a/core/modules/media/tests/src/Functional/ResourceFetcherTest.php
+++ b/core/modules/media/tests/src/Functional/ResourceFetcherTest.php
@@ -38,6 +38,7 @@ protected function setUp(): void {
    * Data provider for testFetchResource().
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerFetchResource() {
     return [
diff --git a/core/modules/media/tests/src/Functional/UrlResolverTest.php b/core/modules/media/tests/src/Functional/UrlResolverTest.php
index bbd12372a3f2d2d781ca974f9251fbdc9a1a369e..e6629104f46b037410f2b97eebe05cf3d78366c2 100644
--- a/core/modules/media/tests/src/Functional/UrlResolverTest.php
+++ b/core/modules/media/tests/src/Functional/UrlResolverTest.php
@@ -39,6 +39,7 @@ protected function setUp(): void {
    * @see ::testEndpointMatching()
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerEndpointMatching() {
     return [
@@ -103,6 +104,7 @@ public function testResourceUrlAlterHook(): void {
    * @see ::testUrlDiscovery()
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerUrlDiscovery() {
     return [
diff --git a/core/modules/media/tests/src/Kernel/MediaThumbnailFormatterTest.php b/core/modules/media/tests/src/Kernel/MediaThumbnailFormatterTest.php
index e7f6ee635b556c98a00b3d20c1473b32ddfdbdf8..124d3f490cfb16cce2be2727b66fc5f65dc63062 100644
--- a/core/modules/media/tests/src/Kernel/MediaThumbnailFormatterTest.php
+++ b/core/modules/media/tests/src/Kernel/MediaThumbnailFormatterTest.php
@@ -91,6 +91,7 @@ public function testSettingsSummary(array $settings, array $expected_summary): v
    * Data provider for testSettingsSummary().
    *
    * @return array[]
+   *   An array of test data.
    */
   public static function providerTestSettingsSummary(): array {
     return [
diff --git a/core/modules/media/tests/src/Kernel/OEmbedIframeControllerTest.php b/core/modules/media/tests/src/Kernel/OEmbedIframeControllerTest.php
index 050050004713047339f603245c1a67f800761b33..76b2523c56853cd9b724dcfa9d146cde346a87a3 100644
--- a/core/modules/media/tests/src/Kernel/OEmbedIframeControllerTest.php
+++ b/core/modules/media/tests/src/Kernel/OEmbedIframeControllerTest.php
@@ -28,6 +28,7 @@ class OEmbedIframeControllerTest extends MediaKernelTestBase {
    * Data provider for testBadHashParameter().
    *
    * @return array
+   *   An array of test cases.OffCanvasDialogTest.php
    */
   public static function providerBadHashParameter() {
     return [
diff --git a/core/modules/media/tests/src/Kernel/ProviderRepositoryTest.php b/core/modules/media/tests/src/Kernel/ProviderRepositoryTest.php
index c8ed11cdf4434224d79816bb98b129bdf8e28c5e..1fff55829bfcb51962027d68a4f79fd7c99f8b09 100644
--- a/core/modules/media/tests/src/Kernel/ProviderRepositoryTest.php
+++ b/core/modules/media/tests/src/Kernel/ProviderRepositoryTest.php
@@ -43,6 +43,7 @@ public function testEmptyProviderList($content): void {
    * @see ::testEmptyProviderList()
    *
    * @return array
+   *   An array of test cases.
    */
   public static function providerEmptyProviderList() {
     return [
@@ -77,6 +78,7 @@ public function testNonExistingProviderDatabase($providers_url, $exception_messa
    * @see ::testEmptyProviderList()
    *
    * @return array
+   *   An array of test cases.
    */
   public static function providerNonExistingProviderDatabase() {
     return [
diff --git a/core/modules/media/tests/src/Traits/OEmbedTestTrait.php b/core/modules/media/tests/src/Traits/OEmbedTestTrait.php
index 273b2513301abb19c2520af702cbd96c92537bf5..b57de1350459e10d1434df0903003fac6b61ed54 100644
--- a/core/modules/media/tests/src/Traits/OEmbedTestTrait.php
+++ b/core/modules/media/tests/src/Traits/OEmbedTestTrait.php
@@ -17,6 +17,7 @@ trait OEmbedTestTrait {
    * Returns the relative path to the oEmbed fixtures directory.
    *
    * @return string
+   *   The relative path to the oEmbed fixtures directory.
    */
   protected function getFixturesDirectory(): string {
     return \Drupal::service('extension.list.module')->getPath('media') . '/tests/fixtures/oembed';
@@ -26,6 +27,7 @@ protected function getFixturesDirectory(): string {
    * Returns the absolute URL of the oEmbed fixtures directory.
    *
    * @return string
+   *   The absolute URL of the oEmbed fixtures directory.
    */
   protected function getFixturesUrl(): string {
     return $this->baseUrl . '/' . $this->getFixturesDirectory();
diff --git a/core/modules/media/tests/src/Unit/IFrameUrlHelperTest.php b/core/modules/media/tests/src/Unit/IFrameUrlHelperTest.php
index cd384efb2b4d0a41709b35b9ae1811bf6657bcff..389fb37c23d2caa186f54ffa3f6f4125b39bdcc7 100644
--- a/core/modules/media/tests/src/Unit/IFrameUrlHelperTest.php
+++ b/core/modules/media/tests/src/Unit/IFrameUrlHelperTest.php
@@ -22,6 +22,7 @@ class IFrameUrlHelperTest extends UnitTestCase {
    * @see ::testIsSecure()
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerIsSecure() {
     return [
diff --git a/core/modules/migrate/tests/src/Kernel/HighWaterTest.php b/core/modules/migrate/tests/src/Kernel/HighWaterTest.php
index 28b4f633bfc730e829ad7f448fde0903e4021f8c..402275698bee282cacd4c7c4af8b9d974e74b409 100644
--- a/core/modules/migrate/tests/src/Kernel/HighWaterTest.php
+++ b/core/modules/migrate/tests/src/Kernel/HighWaterTest.php
@@ -295,6 +295,7 @@ protected function assertNodeDoesNotExist(string $title): void {
    *   Title of the node.
    *
    * @return bool
+   *   TRUE if node exists, FALSE otherwise.
    */
   protected function nodeExists($title): bool {
     $query = \Drupal::entityQuery('node')->accessCheck(FALSE);
diff --git a/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php b/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php
index 7d2a59e5297a9b042ced336f18566cccb4d9ec50..1999e3ad86f4cbdd61b5dd1d7d84df9e8d3bab8b 100644
--- a/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php
+++ b/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php
@@ -82,6 +82,7 @@ protected function setUp(): void {
    * Determines the plugin to be tested by reading the class @covers annotation.
    *
    * @return string
+   *   The fully qualified class name of the plugin to be tested.
    */
   protected function getPluginClass() {
     $covers = $this->getTestClassCovers();
diff --git a/core/modules/migrate/tests/src/Kernel/TrackChangesTest.php b/core/modules/migrate/tests/src/Kernel/TrackChangesTest.php
index 03f8d74f20cc81cb948dc31ef63d698ac907a613..fae23fd46b421a0e7ce27a6c8639d793bfd41f8d 100644
--- a/core/modules/migrate/tests/src/Kernel/TrackChangesTest.php
+++ b/core/modules/migrate/tests/src/Kernel/TrackChangesTest.php
@@ -225,6 +225,7 @@ protected function assertTermDoesNotExist(string $property, string $value): void
    *   Value to evaluate.
    *
    * @return bool
+   *   TRUE if term exists, FALSE otherwise.
    */
   protected function termExists($property, $value): bool {
     $property = $property === 'description' ? 'description__value' : $property;
diff --git a/core/modules/migrate/tests/src/Kernel/process/ExtractTest.php b/core/modules/migrate/tests/src/Kernel/process/ExtractTest.php
index 6651337f1bf851be73179fccc8b86322bf32c4ae..641b4e5bfa87079fd34ac09ff729fd55bacc8021 100644
--- a/core/modules/migrate/tests/src/Kernel/process/ExtractTest.php
+++ b/core/modules/migrate/tests/src/Kernel/process/ExtractTest.php
@@ -24,6 +24,7 @@ class ExtractTest extends KernelTestBase {
    * Returns test migration definition.
    *
    * @return array
+   *   The test migration definition.
    */
   public function getDefinition() {
     return [
diff --git a/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php b/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php
index c17719d6e1ef21212f99d8d7cc7334a655721bb2..35bda35ba7a2fd6ac29a038488f9251d2a8a8700 100644
--- a/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php
+++ b/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php
@@ -24,6 +24,7 @@ class HandleMultiplesTest extends KernelTestBase {
    * Provides the test migration definition.
    *
    * @return array
+   *   The test migration definition.
    */
   public function getDefinition() {
     return [
@@ -137,6 +138,7 @@ public function testScalarAndMultipleValues(array $source_data, array $expected_
    * Provides the source data with scalar and multiple values.
    *
    * @return array
+   *   An array of test cases.
    */
   public static function scalarAndMultipleValuesProviderSource() {
     return [
diff --git a/core/modules/migrate/tests/src/Kernel/process/SubProcessWithSkipTest.php b/core/modules/migrate/tests/src/Kernel/process/SubProcessWithSkipTest.php
index 7d94b673e5e2ef8c2083e794268d10d2570257cf..f3a59aaf36fb9b1f834e157f8d75434e100bb22d 100644
--- a/core/modules/migrate/tests/src/Kernel/process/SubProcessWithSkipTest.php
+++ b/core/modules/migrate/tests/src/Kernel/process/SubProcessWithSkipTest.php
@@ -24,6 +24,7 @@ class SubProcessWithSkipTest extends KernelTestBase {
    * Provides the test migration definition.
    *
    * @return array
+   *   The test migration definition.
    */
   public function getDefinition() {
     return [
@@ -110,6 +111,7 @@ public function testSubProcessSkip(string $method, array $expected_data): void {
    * Data provider for testNotFoundSubProcess().
    *
    * @return array
+   *   The data for the testNotFoundSubProcess() test.
    */
   public static function providerTestSubProcessSkip(): array {
     return [
diff --git a/core/modules/migrate/tests/src/Unit/process/DefaultValueTest.php b/core/modules/migrate/tests/src/Unit/process/DefaultValueTest.php
index 1f09bca84297a42dbb553c539be05f7fbfae0447..c6dfbeb776de50c6d5ba830a2145be0324fdc6a7 100644
--- a/core/modules/migrate/tests/src/Unit/process/DefaultValueTest.php
+++ b/core/modules/migrate/tests/src/Unit/process/DefaultValueTest.php
@@ -31,6 +31,7 @@ public function testDefaultValue($configuration, $expected_value, $value): void
    * Provides data for the successful lookup test.
    *
    * @return array
+   *   An array of test cases.
    */
   public static function defaultValueDataProvider() {
     return [
diff --git a/core/modules/migrate/tests/src/Unit/process/GetTest.php b/core/modules/migrate/tests/src/Unit/process/GetTest.php
index fd3374e2ccf34b0870dfc2e92588bc5757f0814c..b457f850d360fdb9b6991bb99443eb6348c78f0e 100644
--- a/core/modules/migrate/tests/src/Unit/process/GetTest.php
+++ b/core/modules/migrate/tests/src/Unit/process/GetTest.php
@@ -96,6 +96,7 @@ public function testIntegerValues($source, $expected_value): void {
    * Provides data for the successful lookup test.
    *
    * @return array
+   *   An array of data for the test.
    */
   public static function integerValuesDataProvider() {
     return [
diff --git a/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php b/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php
index c43e70191949eda796880e6cb93823518651a6a7..51f3d7fbccfe193e914ad1b3404386843b596a9a 100644
--- a/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php
+++ b/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php
@@ -13,6 +13,7 @@ trait CreateTestContentEntitiesTrait {
    * Gets required modules.
    *
    * @return array
+   *   An array of required modules.
    */
   protected function getRequiredModules(): array {
     return [
diff --git a/core/modules/mysql/tests/src/Unit/ConnectionTest.php b/core/modules/mysql/tests/src/Unit/ConnectionTest.php
index 80104ab2b9777ba7879169594963697a3c9c865e..8865c764e193b0b300c859e92cd6e838ec1f700f 100644
--- a/core/modules/mysql/tests/src/Unit/ConnectionTest.php
+++ b/core/modules/mysql/tests/src/Unit/ConnectionTest.php
@@ -44,6 +44,7 @@ protected function setUp(): void {
    * Creates a Connection object for testing.
    *
    * @return \Drupal\mysql\Driver\Database\mysql\Connection
+   *   A Connection object.
    */
   private function createConnection(): Connection {
     $this->pdoStatement
@@ -98,6 +99,7 @@ public function testVersionAndIsMariaDb(bool $expected_is_mariadb, string $serve
    * Provides test data.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerVersionAndIsMariaDb(): array {
     return [
diff --git a/core/modules/mysql/tests/src/Unit/InstallTasksTest.php b/core/modules/mysql/tests/src/Unit/InstallTasksTest.php
index 759271d47174f8fcbb16c31485211a686ccc8ea0..a50a6f010c76fc42a2d50faef81a41e36ddcf34f 100644
--- a/core/modules/mysql/tests/src/Unit/InstallTasksTest.php
+++ b/core/modules/mysql/tests/src/Unit/InstallTasksTest.php
@@ -36,6 +36,7 @@ protected function setUp(): void {
    * Creates a Tasks object for testing.
    *
    * @return \Drupal\mysql\Driver\Database\mysql\Install\Tasks
+   *   A Tasks object.
    */
   private function createTasks(): Tasks {
     /** @var \Drupal\mysql\Driver\Database\mysql\Connection $connection */
@@ -73,6 +74,7 @@ protected function t($string, array $args = [], array $options = []) {
    * Creates a Tasks object for testing, without connection.
    *
    * @return \Drupal\mysql\Driver\Database\mysql\Install\Tasks
+   *   A Tasks object.
    */
   private function createTasksNoConnection(): Tasks {
     return new class() extends Tasks {
@@ -116,6 +118,7 @@ public function testNameAndMinimumVersion(bool $is_mariadb, string $expected_nam
    * Provides test data.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerNameAndMinimumVersion(): array {
     return [
diff --git a/core/modules/node/tests/src/Functional/NodeDisplayConfigurableTest.php b/core/modules/node/tests/src/Functional/NodeDisplayConfigurableTest.php
index 1d2602c18aaccd567d937de60ea65b8a5d13ca5a..48b893c866aac356be9631e258606d9d5844d9a2 100644
--- a/core/modules/node/tests/src/Functional/NodeDisplayConfigurableTest.php
+++ b/core/modules/node/tests/src/Functional/NodeDisplayConfigurableTest.php
@@ -153,6 +153,7 @@ protected function assertNodeHtml(NodeInterface $node, UserInterface $user, bool
    * Data provider for ::testDisplayConfigurable().
    *
    * @return array
+   *   An array of test cases.
    */
   public static function provideThemes() {
     return [
diff --git a/core/modules/package_manager/tests/src/Kernel/ComposerPluginsValidatorTestBase.php b/core/modules/package_manager/tests/src/Kernel/ComposerPluginsValidatorTestBase.php
index 6515796de8e77d1b27897e85be585bd98c67712f..d9b91b1a7605d3418f8d2677146e9ee98707eb22 100644
--- a/core/modules/package_manager/tests/src/Kernel/ComposerPluginsValidatorTestBase.php
+++ b/core/modules/package_manager/tests/src/Kernel/ComposerPluginsValidatorTestBase.php
@@ -98,6 +98,7 @@ protected function doTestValidationAfterTrustingDuringPreApply(array $composer_c
    * Generates simple test cases.
    *
    * @return \Generator
+   *   The test cases.
    */
   public static function providerSimpleValidCases(): \Generator {
     yield 'no composer plugins' => [
@@ -181,6 +182,7 @@ public static function providerSimpleValidCases(): \Generator {
    * Generates simple invalid test cases.
    *
    * @return \Generator
+   *   The test cases.
    */
   public static function providerSimpleInvalidCases(): \Generator {
     yield 'one UNsupported composer plugin — pretty package name' => [
@@ -280,6 +282,7 @@ public static function providerSimpleInvalidCases(): \Generator {
    * Generates complex invalid test cases based on the simple test cases.
    *
    * @return \Generator
+   *   The test cases.
    */
   public static function providerComplexInvalidCases(): \Generator {
     $valid_cases = iterator_to_array(static::providerSimpleValidCases());
diff --git a/core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php b/core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php
index b3a0ea3971c7c52a31c861a80461e64b250e4cf4..b49b6bbebc1f75cf6f581c97429e16a3c57d635e 100644
--- a/core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php
+++ b/core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php
@@ -82,6 +82,7 @@ public function testProcessOutbound($path, array $options, $expected_path): void
 
   /**
    * @return array
+   *   The data provider for testProcessOutbound.
    */
   public static function providerTestProcessOutbound() {
     return [
diff --git a/core/modules/rest/tests/modules/rest_test/src/Plugin/rest/resource/NoSerializationClassTestResource.php b/core/modules/rest/tests/modules/rest_test/src/Plugin/rest/resource/NoSerializationClassTestResource.php
index 728dd209ddbdfd6001fa1991fe61bd4924c8cd8d..6ca42077130fc373113d7f3c416b8206504aa99f 100644
--- a/core/modules/rest/tests/modules/rest_test/src/Plugin/rest/resource/NoSerializationClassTestResource.php
+++ b/core/modules/rest/tests/modules/rest_test/src/Plugin/rest/resource/NoSerializationClassTestResource.php
@@ -27,6 +27,7 @@ class NoSerializationClassTestResource extends ResourceBase {
    *   An array with the payload.
    *
    * @return \Drupal\rest\ResourceResponse
+   *   The HTTP response object.
    */
   public function post(array $data) {
     return new ResourceResponse($data);
diff --git a/core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php
index e2e0770648caed39d4ef365d9285d163f4d07cfc..365f7b2f06aede62a6b0f35bf2156ae01878881c 100644
--- a/core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php
+++ b/core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php
@@ -272,6 +272,7 @@ protected function createAnotherEntity() {
    * @see ::createEntity()
    *
    * @return array
+   *   An array structure as returned by ::getExpectedNormalizedEntity().
    */
   abstract protected function getExpectedNormalizedEntity();
 
@@ -281,6 +282,7 @@ abstract protected function getExpectedNormalizedEntity();
    * @see ::testPost
    *
    * @return array
+   *   An array structure as returned by ::getNormalizedPostEntity().
    */
   abstract protected function getNormalizedPostEntity();
 
@@ -293,6 +295,7 @@ abstract protected function getNormalizedPostEntity();
    * @see ::testPatch
    *
    * @return array
+   *   An array structure as returned by ::getNormalizedPostEntity().
    */
   protected function getNormalizedPatchEntity() {
     return $this->getNormalizedPostEntity();
@@ -377,6 +380,7 @@ protected function getExpectedUnauthorizedEntityAccessCacheability($is_authentic
    * @see ::testGet
    *
    * @return string[]
+   *   The expected cache tags.
    */
   protected function getExpectedCacheTags() {
     $expected_cache_tags = [
@@ -395,6 +399,7 @@ protected function getExpectedCacheTags() {
    * @see ::testGet
    *
    * @return string[]
+   *   The expected cache contexts.
    */
   protected function getExpectedCacheContexts() {
     return [
diff --git a/core/modules/rest/tests/src/Functional/FileUploadResourceTestBase.php b/core/modules/rest/tests/src/Functional/FileUploadResourceTestBase.php
index ea5003dd8ee707baa3644b5c9bb6dfe4a47c83ca..e4c1db6435df150fda856a7743886bcd09461b34 100644
--- a/core/modules/rest/tests/src/Functional/FileUploadResourceTestBase.php
+++ b/core/modules/rest/tests/src/Functional/FileUploadResourceTestBase.php
@@ -229,6 +229,7 @@ public function testPostFileUpload(): void {
    * Returns the normalized POST entity referencing the uploaded file.
    *
    * @return array
+   *   The normalized POST entity.
    *
    * @see ::testPostFileUpload()
    * @see \Drupal\Tests\rest\Functional\EntityResource\EntityTest\EntityTestResourceTestBase::getNormalizedPostEntity()
@@ -766,6 +767,7 @@ protected function getExpectedNormalizedEntity($fid = 1, $expected_filename = 'e
    *   the header value to FALSE.
    *
    * @return \Psr\Http\Message\ResponseInterface
+   *   The response object.
    *
    * @see \GuzzleHttp\ClientInterface::request()
    */
diff --git a/core/modules/rest/tests/src/Unit/EventSubscriber/ResourceResponseSubscriberTest.php b/core/modules/rest/tests/src/Unit/EventSubscriber/ResourceResponseSubscriberTest.php
index fd0dce49060070d908e51622dc4ab8f5f1fecaf0..5b1c0c400b545ad101cf1b27450b64f2e11f11f3 100644
--- a/core/modules/rest/tests/src/Unit/EventSubscriber/ResourceResponseSubscriberTest.php
+++ b/core/modules/rest/tests/src/Unit/EventSubscriber/ResourceResponseSubscriberTest.php
@@ -380,6 +380,7 @@ public static function providerTestResponseFormat() {
 
   /**
    * @return \Drupal\rest\EventSubscriber\ResourceResponseSubscriber
+   *   A functioning ResourceResponseSubscriber.
    */
   protected function getFunctioningResourceResponseSubscriber(RouteMatchInterface $route_match) {
     // Create a dummy of the renderer service.
diff --git a/core/modules/serialization/tests/src/Traits/JsonSchemaTestTrait.php b/core/modules/serialization/tests/src/Traits/JsonSchemaTestTrait.php
index 2a08c3214cca133bf0ed7e7fb7b9388f077c3851..a7852e7bec10268dfb02707e1ec356174e9e0218 100644
--- a/core/modules/serialization/tests/src/Traits/JsonSchemaTestTrait.php
+++ b/core/modules/serialization/tests/src/Traits/JsonSchemaTestTrait.php
@@ -36,6 +36,7 @@ abstract public static function jsonSchemaDataProvider(): array;
    * Method to make prophecy public for use in data provider closures.
    *
    * @return \Prophecy\Prophecy\ObjectProphecy<object>
+   *   A new prophecy object.
    */
   public function doProphesize(?string $classOrInterface = NULL): ObjectProphecy {
     return $this->prophesize($classOrInterface);
diff --git a/core/modules/serialization/tests/src/Unit/Normalizer/ContentEntityNormalizerTest.php b/core/modules/serialization/tests/src/Unit/Normalizer/ContentEntityNormalizerTest.php
index 3e8da705c831a228ae31bb7ccfd74671df0b9a94..55d4c4e4296a3e627961d7e72e7828a8a66448ce 100644
--- a/core/modules/serialization/tests/src/Unit/Normalizer/ContentEntityNormalizerTest.php
+++ b/core/modules/serialization/tests/src/Unit/Normalizer/ContentEntityNormalizerTest.php
@@ -126,6 +126,7 @@ public function testNormalizeWithAccountContext(): void {
    *   The properties the will be returned.
    *
    * @return \PHPUnit\Framework\MockObject\MockObject
+   *   The mock content entity.
    */
   public function createMockForContentEntity($definitions) {
     $content_entity_mock = $this->getMockBuilder(ContentEntityBaseMockableClass::class)
@@ -154,6 +155,7 @@ public function createMockForContentEntity($definitions) {
    *   The user context used for the access check.
    *
    * @return \Drupal\Core\Field\FieldItemListInterface|\PHPUnit\Framework\MockObject\MockObject
+   *   The mock field list item.
    */
   protected function createMockFieldListItem($access, $internal, ?AccountInterface $user_context = NULL) {
     $data_definition = $this->prophesize(DataDefinitionInterface::class);
diff --git a/core/modules/serialization/tests/src/Unit/Normalizer/DateTimeIso8601NormalizerTest.php b/core/modules/serialization/tests/src/Unit/Normalizer/DateTimeIso8601NormalizerTest.php
index 0cf16102e6b832cc1418baa496438de70bef9eb3..4a805e19d6b343a0b7d5782bdecdbe775811cb73 100644
--- a/core/modules/serialization/tests/src/Unit/Normalizer/DateTimeIso8601NormalizerTest.php
+++ b/core/modules/serialization/tests/src/Unit/Normalizer/DateTimeIso8601NormalizerTest.php
@@ -155,6 +155,7 @@ public function testNormalizeWhenNull($parent_field_item_class, $datetime_type,
    * Data provider for testNormalize.
    *
    * @return array
+   *   The data provider array.
    */
   public static function providerTestNormalize() {
     return [
@@ -199,6 +200,7 @@ public function testDenormalizeValidFormats($type, $normalized, $expected): void
    * Data provider for testDenormalizeValidFormats.
    *
    * @return array
+   *   An array of test cases.
    */
   public static function providerTestDenormalizeValidFormats() {
     $data = [];
diff --git a/core/modules/serialization/tests/src/Unit/Normalizer/DateTimeNormalizerTest.php b/core/modules/serialization/tests/src/Unit/Normalizer/DateTimeNormalizerTest.php
index 39e96006c06828926ae37d6ef3f8f3c979b72f68..2737f367bfe274928c2f8f422c52f2242ab40f6b 100644
--- a/core/modules/serialization/tests/src/Unit/Normalizer/DateTimeNormalizerTest.php
+++ b/core/modules/serialization/tests/src/Unit/Normalizer/DateTimeNormalizerTest.php
@@ -123,6 +123,7 @@ public function testDenormalizeValidFormats($normalized, $expected): void {
    * Data provider for testDenormalizeValidFormats.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestDenormalizeValidFormats() {
     $data = [];
@@ -154,6 +155,7 @@ public function testDenormalizeUserFormats($normalized, $format, $expected): voi
    * Data provider for testDenormalizeUserFormats.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestDenormalizeUserFormats() {
     $data = [];
diff --git a/core/modules/serialization/tests/src/Unit/Normalizer/TimestampItemNormalizerTest.php b/core/modules/serialization/tests/src/Unit/Normalizer/TimestampItemNormalizerTest.php
index c0cd1374ff6ad547d206c6304af61eb43c4137bf..15837fa81b840276228e55d2f4fefdb8db4af5d3 100644
--- a/core/modules/serialization/tests/src/Unit/Normalizer/TimestampItemNormalizerTest.php
+++ b/core/modules/serialization/tests/src/Unit/Normalizer/TimestampItemNormalizerTest.php
@@ -173,6 +173,7 @@ public function testDenormalize(): void {
    * Creates a TimestampItem prophecy.
    *
    * @return \Prophecy\Prophecy\ObjectProphecy<\Drupal\Core\Field\Plugin\Field\FieldType\TimestampItem>
+   *   The TimestampItem prophecy.
    */
   protected function createTimestampItemProphecy(): ObjectProphecy {
     $timestamp_item = $this->prophesize(TimestampItem::class);
diff --git a/core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php b/core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php
index c200bbde64feba8468407e872013beb4d420497d..e0e4c991c470f01d37667c2f0d2c74a04acfab7e 100644
--- a/core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php
+++ b/core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php
@@ -103,6 +103,7 @@ public function testDenormalizeValidFormats($normalized, $expected): void {
    * Data provider for testDenormalizeValidFormats.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestDenormalizeValidFormats() {
     $expected_stamp = 1478422920;
diff --git a/core/modules/system/src/Tests/Routing/MockAliasManager.php b/core/modules/system/src/Tests/Routing/MockAliasManager.php
index a9b88bfbc5c7d470f3b6947dcd2723a4b4ec6c17..86bcd201c46fdd4a96b55caa36a3793af087c4ea 100644
--- a/core/modules/system/src/Tests/Routing/MockAliasManager.php
+++ b/core/modules/system/src/Tests/Routing/MockAliasManager.php
@@ -80,6 +80,7 @@ public function getPathByAlias($alias, $langcode = NULL) {
    *   The language code.
    *
    * @return string
+   *   The value of the alias.
    */
   public function getAliasByPath($path, $langcode = NULL) {
     if ($path[0] !== '/') {
diff --git a/core/modules/system/tests/modules/content_negotiation_test/src/Controller/TestController.php b/core/modules/system/tests/modules/content_negotiation_test/src/Controller/TestController.php
index dc06b5c3c7d0dddc83413e59b0c427cda00f906a..58df87602bff234859cdb6e5cbb4a23160bfa90f 100644
--- a/core/modules/system/tests/modules/content_negotiation_test/src/Controller/TestController.php
+++ b/core/modules/system/tests/modules/content_negotiation_test/src/Controller/TestController.php
@@ -17,6 +17,7 @@ class TestController {
    * Returns a json response.
    *
    * @return \Symfony\Component\HttpFoundation\JsonResponse
+   *   The Json response value.
    */
   public function simple() {
     return new JsonResponse(['some' => 'data']);
@@ -26,6 +27,7 @@ public function simple() {
    * Returns a simple render array.
    *
    * @return array
+   *   A render array with only '#markup'.
    */
   public function html() {
     return [
diff --git a/core/modules/system/tests/modules/database_test/src/Controller/DatabaseTestController.php b/core/modules/system/tests/modules/database_test/src/Controller/DatabaseTestController.php
index 6634b9d274001496d7e68659b354ee0c70ce9faf..71e23ba35bbf750ebe7ebcd257bcdd5843cbba88 100644
--- a/core/modules/system/tests/modules/database_test/src/Controller/DatabaseTestController.php
+++ b/core/modules/system/tests/modules/database_test/src/Controller/DatabaseTestController.php
@@ -52,6 +52,7 @@ public static function create(ContainerInterface $container) {
    * test HTTP call.
    *
    * @return \Symfony\Component\HttpFoundation\JsonResponse
+   *   A JSON response containing the names of the test entries.
    */
   public function pagerQueryEven($limit) {
     $query = $this->connection->select('test', 't');
@@ -78,6 +79,7 @@ public function pagerQueryEven($limit) {
    * test HTTP call.
    *
    * @return \Symfony\Component\HttpFoundation\JsonResponse
+   *   A JSON response containing the names of the test entries.
    */
   public function pagerQueryOdd($limit) {
     $query = $this->connection->select('test_task', 't');
@@ -104,6 +106,7 @@ public function pagerQueryOdd($limit) {
    * test HTTP call.
    *
    * @return \Symfony\Component\HttpFoundation\JsonResponse
+   *   A JSON response containing the test tasks.
    */
   public function testTablesort() {
     $header = [
@@ -136,6 +139,7 @@ public function testTablesort() {
    * test HTTP call.
    *
    * @return \Symfony\Component\HttpFoundation\JsonResponse
+   *   A JSON response containing the test tasks.
    */
   public function testTablesortFirst() {
     $header = [
diff --git a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTest.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTest.php
index 9c7298121a0c446b3d720909e616aa88fa1ed900..39f70e5c8c8c7584f88b8ebd17252bdede801591 100644
--- a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTest.php
+++ b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTest.php
@@ -166,6 +166,7 @@ public function setName($name) {
    * Returns the name.
    *
    * @return string
+   *   The name of the entity.
    */
   public function getName() {
     return $this->get('name')->value;
diff --git a/core/modules/system/tests/modules/form_test/src/Form/FormTestMachineNameForm.php b/core/modules/system/tests/modules/form_test/src/Form/FormTestMachineNameForm.php
index 6b5415cdb5ccf4fcf6e31bf30121dc890225d57f..d072732e52a068e1f7a3b8ff777aff11673205aa 100644
--- a/core/modules/system/tests/modules/form_test/src/Form/FormTestMachineNameForm.php
+++ b/core/modules/system/tests/modules/form_test/src/Form/FormTestMachineNameForm.php
@@ -87,6 +87,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
    *   The machine name.
    *
    * @return bool
+   *   TRUE if the machine name is a duplicate, FALSE otherwise.
    */
   public function load($machine_name) {
     return str_contains($machine_name, 'duplicate');
diff --git a/core/modules/system/tests/modules/form_test/src/Form/FormTestMachineNameValidationForm.php b/core/modules/system/tests/modules/form_test/src/Form/FormTestMachineNameValidationForm.php
index 48e72015230f8f1072b0b1eb8dbba94bb098e281..5e14dc5e3d3e3ae7a1afaa26c7a4235c4e29ecba 100644
--- a/core/modules/system/tests/modules/form_test/src/Form/FormTestMachineNameValidationForm.php
+++ b/core/modules/system/tests/modules/form_test/src/Form/FormTestMachineNameValidationForm.php
@@ -126,6 +126,7 @@ public function buildAjaxSnackConfigureForm(array $form, FormStateInterface $for
    *   The machine name.
    *
    * @return bool
+   *   TRUE if the machine name is a duplicate, FALSE otherwise.
    */
   public function load($machine_name) {
     if (str_contains($machine_name, 'duplicate')) {
diff --git a/core/modules/system/tests/modules/many_assets_test/src/Controller/ManyAssetsTestController.php b/core/modules/system/tests/modules/many_assets_test/src/Controller/ManyAssetsTestController.php
index 13307fd999a0fb6e7a1f89e2f14e83c3549c59b9..770b6fcd44356e70b3f74a0bf6801b0ff4ae6158 100644
--- a/core/modules/system/tests/modules/many_assets_test/src/Controller/ManyAssetsTestController.php
+++ b/core/modules/system/tests/modules/many_assets_test/src/Controller/ManyAssetsTestController.php
@@ -15,6 +15,7 @@ class ManyAssetsTestController extends ControllerBase {
    * The render array of the assets testing page.
    *
    * @return array
+   *   A render array with a message and attached asset libraries.
    */
   public function build() {
     return [
diff --git a/core/modules/system/tests/modules/menu_test/src/Access/AccessCheck.php b/core/modules/system/tests/modules/menu_test/src/Access/AccessCheck.php
index 29ac7a741641ab04cd52b5a5d64874e510f3ca5d..9c7ff92de2c879f3f81b517f8e1339c52e3099fa 100644
--- a/core/modules/system/tests/modules/menu_test/src/Access/AccessCheck.php
+++ b/core/modules/system/tests/modules/menu_test/src/Access/AccessCheck.php
@@ -56,6 +56,7 @@ public function access() {
 
   /**
    * @return \Drupal\Core\Access\AccessResultForbidden
+   *   The forbidden access result.
    */
   public function menuLocalAction7() {
     return AccessResult::forbidden()->addCacheTags(['menu_local_action7'])->addCacheContexts(['url.query_args:menu_local_action7']);
@@ -63,6 +64,7 @@ public function menuLocalAction7() {
 
   /**
    * @return \Drupal\Core\Access\AccessResultAllowed
+   *   The allowed access result.
    */
   public function menuLocalAction8() {
     return AccessResult::allowed()->addCacheTags(['menu_local_action8'])->addCacheContexts(['url.query_args:menu_local_action8']);
diff --git a/core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php b/core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php
index 24b29753e847aeef68362ec48a197ddff178ed16..8a21cb2fb49a6f88efd8325e25c965775609a339 100644
--- a/core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php
+++ b/core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php
@@ -118,6 +118,7 @@ public function themePage($inherited) {
    * A title callback for XSS breadcrumb check.
    *
    * @return string
+   *   A string that can be used for comparison.
    */
   public function breadcrumbTitleCallback() {
     return '<script>alert(123);</script>';
diff --git a/core/modules/system/tests/modules/path_encoded_test/src/Controller/PathEncodedTestController.php b/core/modules/system/tests/modules/path_encoded_test/src/Controller/PathEncodedTestController.php
index bdbef9f35ddc6ae4eb30fa59e2c8fbe492836b62..46b010981da326f2e72441271b099a44f850aa09 100644
--- a/core/modules/system/tests/modules/path_encoded_test/src/Controller/PathEncodedTestController.php
+++ b/core/modules/system/tests/modules/path_encoded_test/src/Controller/PathEncodedTestController.php
@@ -15,6 +15,7 @@ class PathEncodedTestController {
    * Returns an HTML simple response.
    *
    * @return \Symfony\Component\HttpFoundation\Response
+   *   A simple HTML response.
    */
   public function simple() {
     return new Response('<html><body>PathEncodedTestController works</body></html>');
diff --git a/core/modules/system/tests/modules/performance_test/src/Cache/CacheBackendDecorator.php b/core/modules/system/tests/modules/performance_test/src/Cache/CacheBackendDecorator.php
index 361a6f2eba1d1f29a8e2933aacd26a9e9caefe3e..120cd312e82435ef5eb2ffe6fa17b91e152fdd0c 100644
--- a/core/modules/system/tests/modules/performance_test/src/Cache/CacheBackendDecorator.php
+++ b/core/modules/system/tests/modules/performance_test/src/Cache/CacheBackendDecorator.php
@@ -27,8 +27,6 @@ public function __construct(protected readonly PerformanceDataCollector $perform
    *   The stop microtime.
    * @param string $operation
    *   The type of operation being logged.
-   *
-   * @return void
    */
   protected function logCacheOperation(string|array $cids, float $start, float $stop, string $operation): void {
     $this->performanceDataCollector->addCacheOperation([
diff --git a/core/modules/system/tests/modules/performance_test/src/Cache/CacheTagsChecksumDecorator.php b/core/modules/system/tests/modules/performance_test/src/Cache/CacheTagsChecksumDecorator.php
index dd4675f4b62ef892a6b6903d57f972c0505006fd..23be1b43a1600517e3115de30bfe187bff6a94b1 100644
--- a/core/modules/system/tests/modules/performance_test/src/Cache/CacheTagsChecksumDecorator.php
+++ b/core/modules/system/tests/modules/performance_test/src/Cache/CacheTagsChecksumDecorator.php
@@ -90,8 +90,6 @@ public function registerCacheTagsForPreload(array $cache_tags): void {
    *   The stop microtime.
    * @param \Drupal\performance_test\Cache\CacheTagOperation $operation
    *   The type of operation being logged.
-   *
-   * @return void
    */
   protected function logCacheTagOperation(array $tags, float $start, float $stop, CacheTagOperation $operation): void {
     $this->performanceDataCollector->addCacheTagOperation([
diff --git a/core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php
index c6c078b62156cbe108c4370baf1fd5ef7fe4ffd8..15784dc6a85029f55a0d2152c6e0e487dfad9c36 100644
--- a/core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php
+++ b/core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php
@@ -140,6 +140,7 @@ public function __construct() {
    *   Whether the context definition is required.
    *
    * @return \Drupal\Core\Plugin\Context\ContextDefinition
+   *   The context definition object.
    */
   protected function createContextDefinition($data_type, $label, $required = TRUE) {
     // We cast the label to string for testing purposes only, as it may be
diff --git a/core/modules/system/tests/modules/render_array_non_html_subscriber_test/src/RenderArrayNonHtmlSubscriberTestController.php b/core/modules/system/tests/modules/render_array_non_html_subscriber_test/src/RenderArrayNonHtmlSubscriberTestController.php
index 41f2c7942660e55474f4496ffdc1b276ea91dca4..244c8284034f76ba4f63ddb8b9ad69178d00c6b9 100644
--- a/core/modules/system/tests/modules/render_array_non_html_subscriber_test/src/RenderArrayNonHtmlSubscriberTestController.php
+++ b/core/modules/system/tests/modules/render_array_non_html_subscriber_test/src/RenderArrayNonHtmlSubscriberTestController.php
@@ -14,6 +14,7 @@ class RenderArrayNonHtmlSubscriberTestController extends ControllerBase {
 
   /**
    * @return string
+   *   The value of raw string.
    */
   public function rawString() {
     return new Response((string) $this->t('Raw controller response.'));
@@ -21,6 +22,7 @@ public function rawString() {
 
   /**
    * @return array
+   *   The value of render array.
    */
   public function renderArray() {
     return [
diff --git a/core/modules/system/tests/modules/render_placeholder_message_test/src/RenderPlaceholderMessageTestController.php b/core/modules/system/tests/modules/render_placeholder_message_test/src/RenderPlaceholderMessageTestController.php
index 4c42ae171eed809bb56994b4e4107713a5d2368a..82cf68ddd3c886d6c2e56324b491a8611e4f2b1f 100644
--- a/core/modules/system/tests/modules/render_placeholder_message_test/src/RenderPlaceholderMessageTestController.php
+++ b/core/modules/system/tests/modules/render_placeholder_message_test/src/RenderPlaceholderMessageTestController.php
@@ -35,6 +35,7 @@ public static function create(ContainerInterface $container) {
 
   /**
    * @return array
+   *   A renderable array with the messages placeholder rendered first.
    */
   public function messagesPlaceholderFirst() {
     return $this->build([
@@ -48,6 +49,7 @@ public function messagesPlaceholderFirst() {
 
   /**
    * @return array
+   *   A renderable array with the messages placeholder rendered in the middle.
    */
   public function messagesPlaceholderMiddle() {
     return $this->build([
@@ -61,6 +63,7 @@ public function messagesPlaceholderMiddle() {
 
   /**
    * @return array
+   *   A renderable array with the messages placeholder rendered last.
    */
   public function messagesPlaceholderLast() {
     return $this->build([
@@ -74,6 +77,7 @@ public function messagesPlaceholderLast() {
 
   /**
    * @return array
+   *   A renderable array containing only messages.
    */
   public function queuedMessages() {
     return ['#type' => 'status_messages'];
@@ -81,6 +85,7 @@ public function queuedMessages() {
 
   /**
    * @return array
+   *   A renderable array containing only placeholders.
    */
   protected function build(array $placeholder_order) {
     $build = [];
diff --git a/core/modules/system/tests/modules/system_test/src/Controller/PageCacheAcceptHeaderController.php b/core/modules/system/tests/modules/system_test/src/Controller/PageCacheAcceptHeaderController.php
index 9a83cb3615dca2c38439c24f4be9ce3f7b0184e2..e6e700c9dd9b91b03ed7486aa1e87e35d56618cc 100644
--- a/core/modules/system/tests/modules/system_test/src/Controller/PageCacheAcceptHeaderController.php
+++ b/core/modules/system/tests/modules/system_test/src/Controller/PageCacheAcceptHeaderController.php
@@ -22,6 +22,7 @@ class PageCacheAcceptHeaderController {
    *   The current request object.
    *
    * @return mixed
+   *   The processed response object.
    */
   public function content(Request $request) {
     if ($request->getRequestFormat() === 'json' && $request->query->get('_wrapper_format') === 'drupal_ajax') {
diff --git a/core/modules/system/tests/modules/system_test/src/Controller/SystemTestController.php b/core/modules/system/tests/modules/system_test/src/Controller/SystemTestController.php
index b2f5f26d72dbe58f94fc15e58d148992e31ecd1c..566968fe2d03a754b9e183c1a60041fe69c5b021 100644
--- a/core/modules/system/tests/modules/system_test/src/Controller/SystemTestController.php
+++ b/core/modules/system/tests/modules/system_test/src/Controller/SystemTestController.php
@@ -357,6 +357,7 @@ public function shutdownFunctions($arg1, $arg2) {
    *   Any string for the {foo} slug.
    *
    * @return string
+   *   The value of title.
    */
   public function configureTitle($foo) {
     return 'Bar.' . $foo;
diff --git a/core/modules/system/tests/src/Functional/Ajax/OffCanvasDialogTest.php b/core/modules/system/tests/src/Functional/Ajax/OffCanvasDialogTest.php
index 6c84e168cdac136e8c32afdaa4709242e979cfa4..51ee8e9184bafec4fe880e16c92e933d88a887e7 100644
--- a/core/modules/system/tests/src/Functional/Ajax/OffCanvasDialogTest.php
+++ b/core/modules/system/tests/src/Functional/Ajax/OffCanvasDialogTest.php
@@ -74,6 +74,7 @@ public function testDialog($position): void {
    * The data provider for potential dialog positions.
    *
    * @return array
+   *   An array of dialog positions.
    */
   public static function dialogPosition() {
     return [
diff --git a/core/modules/system/tests/src/Functional/System/AdminTest.php b/core/modules/system/tests/src/Functional/System/AdminTest.php
index 021e7bdcea2a8b3b9cd32b6921a553c41fddb0f4..ee9935b6fea584089c0d73b0875953e28786f41d 100644
--- a/core/modules/system/tests/src/Functional/System/AdminTest.php
+++ b/core/modules/system/tests/src/Functional/System/AdminTest.php
@@ -132,6 +132,7 @@ public function testAdminPages(): void {
    * Returns all top level menu links.
    *
    * @return \Drupal\Core\Menu\MenuLinkTreeElement[]
+   *   The top level menu links.
    */
   protected function getTopLevelMenuLinks() {
     $menu_tree = \Drupal::menuTree();
diff --git a/core/modules/system/tests/src/FunctionalJavascript/Form/DevelopmentSettingsFormTest.php b/core/modules/system/tests/src/FunctionalJavascript/Form/DevelopmentSettingsFormTest.php
index 49943d8023b789b54c7b825454512f0fa924a574..30f50b7bd0afcdd0af4c5986ff4ec11aa529563f 100644
--- a/core/modules/system/tests/src/FunctionalJavascript/Form/DevelopmentSettingsFormTest.php
+++ b/core/modules/system/tests/src/FunctionalJavascript/Form/DevelopmentSettingsFormTest.php
@@ -86,6 +86,7 @@ public function testTwigDevelopmentMode(bool $twig_development_mode, ?bool $twig
    * Test data for Twig development mode.
    *
    * @return array[]
+   *   An array of test data.
    */
   public static function twigDevelopmentData(): array {
     return [
diff --git a/core/modules/system/tests/src/FunctionalJavascript/ModuleUninstallFilterTest.php b/core/modules/system/tests/src/FunctionalJavascript/ModuleUninstallFilterTest.php
index e89ac08ec8375d37c326b3d9f6a124cf87bf422b..2652b322578399da66ac4686539eb8449e7c3472 100644
--- a/core/modules/system/tests/src/FunctionalJavascript/ModuleUninstallFilterTest.php
+++ b/core/modules/system/tests/src/FunctionalJavascript/ModuleUninstallFilterTest.php
@@ -89,6 +89,7 @@ public function testModuleUninstallFilter(): void {
    *   An array of node elements.
    *
    * @return \Behat\Mink\Element\NodeElement[]
+   *   An array of node elements that are visible.
    */
   protected function filterVisibleElements($elements) {
     $elements = array_filter($elements, function ($element) {
diff --git a/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php b/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php
index f09aaef10eb410144e46ce945ef7a1472c9bdc20..188e1bac91880c99c880f87114805e0520f146dd 100644
--- a/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php
+++ b/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php
@@ -94,6 +94,7 @@ protected function waitForOffCanvasToClose() {
    * Gets the off-canvas dialog element.
    *
    * @return \Behat\Mink\Element\NodeElement|null
+   *   The off-canvas dialog element.
    */
   protected function getOffCanvasDialog() {
     $off_canvas_dialog = $this->getSession()->getPage()->find('css', '.ui-dialog[aria-describedby="drupal-off-canvas"]');
diff --git a/core/modules/system/tests/src/Kernel/Block/SystemMenuBlockTest.php b/core/modules/system/tests/src/Kernel/Block/SystemMenuBlockTest.php
index 2cb413a7e42ffaffd0e609f43d2f426dab6dbd3c..48f7df788a1ccc6a0b37cc65797b3d36de344156 100644
--- a/core/modules/system/tests/src/Kernel/Block/SystemMenuBlockTest.php
+++ b/core/modules/system/tests/src/Kernel/Block/SystemMenuBlockTest.php
@@ -313,6 +313,7 @@ public function testConfigExpanded($active_route, $menu_block_level, $expected_i
 
   /**
    * @return array
+   *   An array of test cases for the config expanded option.
    */
   public static function configExpandedTestCases() {
     return [
diff --git a/core/modules/system/tests/src/Kernel/Entity/EntityReferenceSelectionReferenceableTest.php b/core/modules/system/tests/src/Kernel/Entity/EntityReferenceSelectionReferenceableTest.php
index c81bb7c0dd6ae8192b04df764a8e14742b190165..8c9d95e0ca66315718086edb10ac863eaff4d2c1 100644
--- a/core/modules/system/tests/src/Kernel/Entity/EntityReferenceSelectionReferenceableTest.php
+++ b/core/modules/system/tests/src/Kernel/Entity/EntityReferenceSelectionReferenceableTest.php
@@ -143,6 +143,7 @@ public function testReferenceablesWithNoLabelKey($match, $match_operator, $limit
    * Provides test cases for ::testReferenceablesWithNoLabelKey() test.
    *
    * @return array[]
+   *   An array of test cases.
    */
   public static function providerTestCases() {
     return [
diff --git a/core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php b/core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php
index 3d16ce748fd9073829940592efbfcfa5eb6c9b9c..aa0af090c19ff629eb86083ab47f60bbbfc1a61a 100644
--- a/core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php
+++ b/core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php
@@ -365,6 +365,7 @@ public function testThemeMetaData(): void {
    * Returns the ModuleHandler.
    *
    * @return \Drupal\Core\Extension\ModuleHandlerInterface
+   *   The module handler service.
    */
   protected function moduleHandler() {
     return $this->container->get('module_handler');
@@ -374,6 +375,7 @@ protected function moduleHandler() {
    * Returns the ModuleInstaller.
    *
    * @return \Drupal\Core\Extension\ModuleInstallerInterface
+   *   The module installer service.
    */
   protected function moduleInstaller() {
     return $this->container->get('module_installer');
diff --git a/core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php b/core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php
index 619f7744ec1bc77902b8242bcdaa8e42436b313b..46f9e1409d74805c7ec787eda52444efab665be3 100644
--- a/core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php
+++ b/core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php
@@ -49,6 +49,7 @@ public function testFilesPatternValid($langcode, $filename): void {
 
   /**
    * @return array
+   *   Array of valid translation files.
    */
   public static function providerValidTranslationFiles() {
     return [
@@ -68,6 +69,7 @@ public function testFilesPatternInvalid($langcode, $filename): void {
 
   /**
    * @return array
+   *   Array of invalid translation files.
    */
   public static function providerInvalidTranslationFiles() {
     return [
diff --git a/core/modules/update/tests/src/Functional/UpdateSemverTestBaselineTrait.php b/core/modules/update/tests/src/Functional/UpdateSemverTestBaselineTrait.php
index 852332bd4fd020f36e2d0fde811f57942b6cb2a6..db0b33ae9971b75adf967fda3f33ccc1d2a75859 100644
--- a/core/modules/update/tests/src/Functional/UpdateSemverTestBaselineTrait.php
+++ b/core/modules/update/tests/src/Functional/UpdateSemverTestBaselineTrait.php
@@ -109,8 +109,6 @@ public function testNormalUpdateAvailable(): void {
    *
    * @param string $full_version
    *   The recommended version.
-   *
-   * @return void
    */
   protected function assertNoExtraVersion(string $full_version): void {
     $this->assertUpdateTableTextNotContains('Up to date');
diff --git a/core/modules/user/tests/modules/user_hooks_test/src/Hook/UserHooksTest.php b/core/modules/user/tests/modules/user_hooks_test/src/Hook/UserHooksTest.php
index ed10dcf60370e673821be1f05f5f3e9704e9911c..27aa8988395f488fc96278aa36da40d16ef1f4f5 100644
--- a/core/modules/user/tests/modules/user_hooks_test/src/Hook/UserHooksTest.php
+++ b/core/modules/user/tests/modules/user_hooks_test/src/Hook/UserHooksTest.php
@@ -20,8 +20,6 @@ class UserHooksTest {
    *   The username that is displayed for a user.
    * @param \Drupal\Core\Session\AccountInterface $account
    *   The object on which the operation is being performed.
-   *
-   * @return void
    */
   #[Hook('user_format_name_alter')]
   public function userFormatNameAlter(&$name, AccountInterface $account): void {
diff --git a/core/modules/user/tests/src/Functional/UserPasswordResetTest.php b/core/modules/user/tests/src/Functional/UserPasswordResetTest.php
index 0eeee42d2c97710f6b28cc7d078008ba4588cdcc..9c61e956348cde8a932c72b72770ad7a792bcb25 100644
--- a/core/modules/user/tests/src/Functional/UserPasswordResetTest.php
+++ b/core/modules/user/tests/src/Functional/UserPasswordResetTest.php
@@ -286,6 +286,7 @@ public function testUserPasswordResetPreferredLanguage(): void {
    * Provides scenarios for testUserPasswordResetPreferredLanguage().
    *
    * @return array
+   *   An array of scenarios.
    */
   protected function languagePrefixTestProvider() {
     return [
diff --git a/core/modules/user/tests/src/Kernel/UserConfigValidationTest.php b/core/modules/user/tests/src/Kernel/UserConfigValidationTest.php
index 991f13241302d0682d23ceb981a68c11b10850ad..4e739f7ee07eec27827ca74e39b1cb70de6df1b0 100644
--- a/core/modules/user/tests/src/Kernel/UserConfigValidationTest.php
+++ b/core/modules/user/tests/src/Kernel/UserConfigValidationTest.php
@@ -30,6 +30,7 @@ protected function setUp(): void {
    * Data provider for testUserSettings().
    *
    * @return array
+   *   An array of test cases for testUserSettings().
    */
   public static function providerTestUserSettings(): array {
     return [
diff --git a/core/modules/user/tests/src/Kernel/UserMailNotifyTest.php b/core/modules/user/tests/src/Kernel/UserMailNotifyTest.php
index e341751ccbdbfba842cda79450b99437170c48b6..f9616dfa5308fc9275d401e57ea94782b3bb7c60 100644
--- a/core/modules/user/tests/src/Kernel/UserMailNotifyTest.php
+++ b/core/modules/user/tests/src/Kernel/UserMailNotifyTest.php
@@ -31,6 +31,7 @@ class UserMailNotifyTest extends EntityKernelTestBase {
    * Data provider for user mail testing.
    *
    * @return array
+   *   An array of operations and the mail keys they should send.
    */
   public static function userMailsProvider() {
     return [
diff --git a/core/modules/user/tests/src/Unit/Form/EntityPermissionsFormTest.php b/core/modules/user/tests/src/Unit/Form/EntityPermissionsFormTest.php
index aba42464d88ac90a5df7c91e2ebd4b8047190044..bffb235006e176585ff461d9f380832ce1267471 100644
--- a/core/modules/user/tests/src/Unit/Form/EntityPermissionsFormTest.php
+++ b/core/modules/user/tests/src/Unit/Form/EntityPermissionsFormTest.php
@@ -101,6 +101,7 @@ public function testPermissionsByProvider(string $dependency_name, bool $found):
    * Provides data for the testPermissionsByProvider method.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestPermissionsByProvider() {
     return [
diff --git a/core/modules/user/tests/src/Unit/PermissionAccessCheckTest.php b/core/modules/user/tests/src/Unit/PermissionAccessCheckTest.php
index 3660e00fe1dfea2fc85d035799400e6710aaac94..e1e80dba56c82c27e87340592bb44122a0652f1a 100644
--- a/core/modules/user/tests/src/Unit/PermissionAccessCheckTest.php
+++ b/core/modules/user/tests/src/Unit/PermissionAccessCheckTest.php
@@ -52,6 +52,7 @@ protected function setUp(): void {
    * Provides data for the testAccess method.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestAccess() {
     return [
diff --git a/core/modules/user/tests/src/Unit/UserAuthTest.php b/core/modules/user/tests/src/Unit/UserAuthTest.php
index b007a570fd8f97a0c795cce1b2889050514cabc9..b4a101dbf72f12cd2fac443ee1a8c616a9568419 100644
--- a/core/modules/user/tests/src/Unit/UserAuthTest.php
+++ b/core/modules/user/tests/src/Unit/UserAuthTest.php
@@ -107,6 +107,7 @@ public function testAuthenticateWithMissingCredentials($username, $password): vo
    * Data provider for testAuthenticateWithMissingCredentials().
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestAuthenticateWithMissingCredentials() {
     return [
diff --git a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php
index db5cc0e9e8a3c17923e38b8c604a4078640cdf8e..b8d6a6d80ace74a153d14ef0ecf6d99852afe346 100644
--- a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php
+++ b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php
@@ -36,6 +36,7 @@ public function setTestValue($value) {
    * Returns the testValue property.
    *
    * @return string
+   *   The value of the test.
    */
   public function getTestValue() {
     return $this->testValue;
diff --git a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/filter/FilterTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/filter/FilterTest.php
index 93bddef66640eb1cb8c58e35ea0e77b34d59651d..d35daecd1953a5049fb89f0ebd5975d8a20daa27 100644
--- a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/filter/FilterTest.php
+++ b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/filter/FilterTest.php
@@ -18,6 +18,7 @@ class FilterTest extends FilterPluginBase {
    * Overrides Drupal\views\Plugin\views\row\RowPluginBase::defineOptions().
    *
    * @return array
+   *   An array of options.
    */
   protected function defineOptions() {
     $options = parent::defineOptions();
diff --git a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php
index 38352a5e45d3025a67545aadb93bdbbdfcd05792..6e359aefedf27a71a1aeeed8ba22af561b47f260 100644
--- a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php
+++ b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php
@@ -23,6 +23,7 @@ class JoinTest extends JoinPluginBase {
    * Returns the joinValue property.
    *
    * @return int
+   *   The value of the join.
    */
   public function getJoinValue() {
     return $this->joinValue;
diff --git a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php
index 280b79fe00b284b98456b0c1538a09d52418eb68..e951533bcd53ad99c1886cdd2286f3745bc866e2 100644
--- a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php
+++ b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php
@@ -68,6 +68,7 @@ public function setOutput($output) {
    * Returns the output property.
    *
    * @return string
+   *   The string to output by this plugin.
    */
   public function getOutput() {
     return $this->output;
diff --git a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTest.php
index 48d398c9b59001ac77bb08738a4374e8b97db05f..42f53feae9a7c3781e57cb7754acd7e0dafc9cfc 100644
--- a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTest.php
+++ b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTest.php
@@ -84,6 +84,7 @@ public function setOutput($output) {
    * Returns the output property.
    *
    * @return string
+   *   The output of the plugin.
    */
   public function getOutput() {
     return $this->output;
diff --git a/core/modules/views/tests/src/Kernel/Handler/ArgumentSummaryTest.php b/core/modules/views/tests/src/Kernel/Handler/ArgumentSummaryTest.php
index 9cbdfb9ccc4297dc60b9a98fafa5457f8feaff53..03488125064a16c78f48239f684a2462d6eef930 100644
--- a/core/modules/views/tests/src/Kernel/Handler/ArgumentSummaryTest.php
+++ b/core/modules/views/tests/src/Kernel/Handler/ArgumentSummaryTest.php
@@ -102,7 +102,8 @@ protected function setUp($import_test_views = TRUE): void {
   /**
    * Creates a term in the tag vocabulary.
    *
-   * @return \Drupal\taxonomy\TermInterface $term
+   * @return \Drupal\taxonomy\TermInterface
+   *   The created term.
    */
   protected function createTag(): TermInterface {
     $tag = Term::create([
diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorTest.php
index 73c5e09d8efafc984c4e75506814a285c74e1d08..4dda6b5d5506cedc36e78200138f9b97b6cb2fad 100644
--- a/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorTest.php
+++ b/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorTest.php
@@ -247,6 +247,7 @@ public function testFilterGroupedExposed(): void {
    * Provides grouped exposed filter configuration.
    *
    * @return array
+   *   An array of grouped exposed filter configuration.
    */
   protected function getGroupedExposedFilters(): array {
     $filters = [
diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php
index 31a2b64e61920fa8a6270039ceea773e9577f661..c05b04ad18ce186fdc7452fbd5415cbc1674a741 100644
--- a/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php
+++ b/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php
@@ -79,6 +79,7 @@ protected function dataSet() {
    * Build and return a Page view of the views_test_data table.
    *
    * @return \Drupal\views\ViewExecutable
+   *   The page view object.
    */
   protected function getBasicPageView() {
     $view = Views::getView('test_view');
diff --git a/core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php b/core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php
index 189b3f5da96f227b8126ef247e5176101bc826a5..680047792ca09f359f3e6f658dcea6981aa17a19 100644
--- a/core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php
+++ b/core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php
@@ -142,6 +142,7 @@ protected function setupEntityTypeManager(): void {
    * Data provider for testing different types of tokens.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestTokens() {
     return [
diff --git a/core/modules/views/tests/src/Unit/Plugin/area/ResultTest.php b/core/modules/views/tests/src/Unit/Plugin/area/ResultTest.php
index c42eb70b7096cf6f7064fa01e0a28e3064bb818f..2dcc16334c19fac9d14c4fb9b000af397ec09558 100644
--- a/core/modules/views/tests/src/Unit/Plugin/area/ResultTest.php
+++ b/core/modules/views/tests/src/Unit/Plugin/area/ResultTest.php
@@ -93,6 +93,7 @@ public function testResultArea($content, $expected, $items_per_page = 0): void {
    * Data provider for testResultArea.
    *
    * @return array
+   *   An array of test cases.
    */
   public static function providerTestResultArea() {
     return [
diff --git a/core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php b/core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php
index a038aa7835abf7b6fdc9eae43af263559a8d020d..128a5cefb7cf1528925595f432ba2c8351b24d56 100644
--- a/core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php
+++ b/core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php
@@ -667,6 +667,7 @@ public static function providerTestPrepareItemsByDelta() {
    * Returns a mocked base field storage object.
    *
    * @return \Drupal\Core\Field\FieldStorageDefinitionInterface|\PHPUnit\Framework\MockObject\MockObject
+   *   The mocked field storage object.
    */
   protected function getBaseFieldStorage() {
     $title_storage = $this->createMock('Drupal\Core\Field\FieldStorageDefinitionInterface');
@@ -686,6 +687,7 @@ protected function getBaseFieldStorage() {
    * Returns a mocked configurable field storage object.
    *
    * @return \Drupal\field\FieldStorageConfigInterface|\PHPUnit\Framework\MockObject\MockObject
+   *   The mocked field storage object.
    */
   protected function getConfigFieldStorage() {
     $title_storage = $this->createMock('Drupal\field\FieldStorageConfigInterface');
@@ -705,6 +707,7 @@ protected function getConfigFieldStorage() {
    * Provides sort orders for clickSort() test methods.
    *
    * @return array
+   *   An array of sort orders.
    */
   public static function providerSortOrders() {
     return [
diff --git a/core/modules/views/tests/src/Unit/Plugin/filter/InOperatorTest.php b/core/modules/views/tests/src/Unit/Plugin/filter/InOperatorTest.php
index dd0fea7dd8711049da44408e4d36c4d19793e4b5..1f46a6461d7771b51dacffad01e636c0d86087bd 100644
--- a/core/modules/views/tests/src/Unit/Plugin/filter/InOperatorTest.php
+++ b/core/modules/views/tests/src/Unit/Plugin/filter/InOperatorTest.php
@@ -33,6 +33,7 @@ public function testValidate(): void {
 
   /**
    * @return array
+   *   The options for the filter.
    */
   public static function validate_options_callback() {
     return ['Yes', 'No'];
diff --git a/core/modules/views/tests/src/Unit/Plugin/query/SqlTest.php b/core/modules/views/tests/src/Unit/Plugin/query/SqlTest.php
index 031ac4e6365738405af3e2f52e35ee79dd9ffb5f..bcc6ede7dc2368703cb13794d398b2e55da40382 100644
--- a/core/modules/views/tests/src/Unit/Plugin/query/SqlTest.php
+++ b/core/modules/views/tests/src/Unit/Plugin/query/SqlTest.php
@@ -151,6 +151,7 @@ protected function setupEntityTypeManager(EntityTypeManagerInterface $entity_typ
    *   Test entities keyed by entity type and revision ID.
    *
    * @return \Prophecy\Prophecy\ObjectProphecy<\Drupal\Core\Entity\EntityTypeManagerInterface>
+   *   The mocked entity type manager.
    */
   protected function setupEntityTypes($entities_by_type = [], $entity_revisions_by_type = []): ObjectProphecy {
     $entity_type_manager = $this->prophesize(EntityTypeManagerInterface::class);
diff --git a/core/modules/views/tests/src/Unit/PluginBaseTest.php b/core/modules/views/tests/src/Unit/PluginBaseTest.php
index b557ba40f0e672c5df100cb84507d0de860428ab..e596fc14fffad6dd93956ac6e9e3f9c6d468cc29 100644
--- a/core/modules/views/tests/src/Unit/PluginBaseTest.php
+++ b/core/modules/views/tests/src/Unit/PluginBaseTest.php
@@ -73,6 +73,7 @@ public function testSetOptionDefault($storage, $definition, $expected): void {
    * Data provider for testUnpackOptions().
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestUnpackOptions() {
     $test_parameters = [];
@@ -221,6 +222,7 @@ public static function providerTestUnpackOptions() {
    * Data provider for testSetOptionDefault().
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestSetOptionDefault() {
     $test_parameters = [];
diff --git a/core/modules/views/tests/src/Unit/ViewsDataHelperTest.php b/core/modules/views/tests/src/Unit/ViewsDataHelperTest.php
index 510a1ba953b6df8e97e69414e44eb49604fc3f86..4b3026460d613a93493f6f0366fa00e8f1ad5135 100644
--- a/core/modules/views/tests/src/Unit/ViewsDataHelperTest.php
+++ b/core/modules/views/tests/src/Unit/ViewsDataHelperTest.php
@@ -18,6 +18,7 @@ class ViewsDataHelperTest extends UnitTestCase {
    * Returns the views data definition.
    *
    * @return array
+   *   The views data definition.
    */
   protected function viewsData() {
     $data = ViewTestData::viewsData();
diff --git a/core/modules/views/tests/src/Unit/ViewsDataTest.php b/core/modules/views/tests/src/Unit/ViewsDataTest.php
index 4018cd979604b400117c5e786a174b9b25299fc4..d88891901899873b8e6f34c234364f740fc45020 100644
--- a/core/modules/views/tests/src/Unit/ViewsDataTest.php
+++ b/core/modules/views/tests/src/Unit/ViewsDataTest.php
@@ -116,6 +116,7 @@ protected function viewsData() {
    * Returns the views data definition with the provider key.
    *
    * @return array
+   *   The views data definition.
    *
    * @see static::viewsData()
    */
diff --git a/core/modules/views/tests/src/Unit/ViewsTest.php b/core/modules/views/tests/src/Unit/ViewsTest.php
index 784b5a89e8dbecbe3bff934f8ef3bccb1c37a8ce..5c055b69fb73b9073ef17055d1cccc6c505fcce3 100644
--- a/core/modules/views/tests/src/Unit/ViewsTest.php
+++ b/core/modules/views/tests/src/Unit/ViewsTest.php
@@ -211,6 +211,7 @@ public function testGetApplicableViews($applicable_type, $expected): void {
    * Data provider for testGetApplicableViews.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestGetApplicableViews() {
     return [
diff --git a/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsListingTest.php b/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsListingTest.php
index 418712b023dc5489595fb2fd5e817d3026ff8249..b6f442e62653e61aacd14081a15935f219551386 100644
--- a/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsListingTest.php
+++ b/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsListingTest.php
@@ -138,6 +138,7 @@ public function testFilterViewsListing(): void {
    *   The elements.
    *
    * @return array
+   *   The filtered array.
    */
   protected function filterVisibleElements($elements): array {
     $elements = array_filter($elements, function ($element) {
diff --git a/core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php b/core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php
index f24e427b2ef3bef878883e39943f356b2227d0c4..e46fbcf417bf92dcac70243a0a8eb4056917c52a 100644
--- a/core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php
+++ b/core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php
@@ -121,6 +121,7 @@ public function testCheckAccess($user, $operation, $result, $states_to_create =
    * Data provider for ::testCheckAccess.
    *
    * @return array
+   *   An array of test data.
    */
   public static function checkAccessProvider() {
     $container = new ContainerBuilder();
diff --git a/core/modules/workspaces/tests/src/Unit/ActiveWorkspaceCheckTest.php b/core/modules/workspaces/tests/src/Unit/ActiveWorkspaceCheckTest.php
index c87da448fa03c5921803261cb3676ec2f4a464e2..bf2358311de63d5b4246d7962c7b356eb7323e42 100644
--- a/core/modules/workspaces/tests/src/Unit/ActiveWorkspaceCheckTest.php
+++ b/core/modules/workspaces/tests/src/Unit/ActiveWorkspaceCheckTest.php
@@ -45,6 +45,7 @@ protected function setUp(): void {
    * Provides data for the testAccess method.
    *
    * @return array
+   *   An array of test data.
    */
   public static function providerTestAccess() {
     return [
diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist
index 5b862e191b7f85f45b083a9043a3b3b2f07e9caa..3e120eadc6626be6390853439c51bc8c1326611f 100644
--- a/core/phpcs.xml.dist
+++ b/core/phpcs.xml.dist
@@ -87,12 +87,7 @@
     <include-pattern>core/lib/Drupal/Core/*</include-pattern>
     <include-pattern>core/lib/Drupal/Component/*</include-pattern>
     <include-pattern>core/tests/*</include-pattern>
-  </rule>
-  <rule ref="Drupal.Commenting.FunctionComment.MissingReturnComment">
-    <exclude-pattern>core/lib/Drupal/Core/*</exclude-pattern>
-    <exclude-pattern>core/lib/Drupal/Component/*</exclude-pattern>
-    <exclude-pattern>core/tests/*</exclude-pattern>
-    <exclude-pattern>core/*/tests/*</exclude-pattern>
+    <include-pattern>core/*/tests/*</include-pattern>
   </rule>
   <rule ref="Drupal.Commenting.GenderNeutralComment"/>
   <rule ref="Drupal.Commenting.HookComment"/>