diff --git a/core/modules/content_translation/src/BundleTranslationSettingsInterface.php b/core/modules/content_translation/src/BundleTranslationSettingsInterface.php index b6bf89299e..df7b64bbaf 100644 --- a/core/modules/content_translation/src/BundleTranslationSettingsInterface.php +++ b/core/modules/content_translation/src/BundleTranslationSettingsInterface.php @@ -23,12 +23,12 @@ public function getBundleTranslationSettings($entity_type_id, $bundle); /** * Sets translation settings for the specified bundle. * - * @param array $settings - * An associative array of values keyed by setting name. * @param string $entity_type_id * The entity type identifier. * @param string $bundle * The bundle name. + * @param array $settings + * An associative array of values keyed by setting name. */ public function setBundleTranslationSettings($entity_type_id, $bundle, array $settings); diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationUntranslatableFieldsTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationUntranslatableFieldsTest.php index 75ed9255fe..31431e6763 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationUntranslatableFieldsTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationUntranslatableFieldsTest.php @@ -115,4 +115,5 @@ public function testHiddenWidgets() { $elements = $this->xpath($link_xpath, [':edit_path' => $edit_path]); $this->assertNotEmpty($elements); } + }