diff --git a/Persistence/Content/Handler.php b/Persistence/Content/Handler.php index 8c7766815..e7d858de2 100644 --- a/Persistence/Content/Handler.php +++ b/Persistence/Content/Handler.php @@ -262,11 +262,21 @@ public function publish($contentId, $versionNo, MetadataUpdateStruct $metaDataUp /** * Remove the specified translation from all the Versions of a Content Object. * + * @deprecated since 6.13, use {@see deleteTranslationFromContent} instead + * * @param int $contentId * @param string $languageCode language code of the translation */ public function removeTranslationFromContent($contentId, $languageCode); + /** + * Delete the specified translation from all the Versions of a Content Object. + * + * @param int $contentId + * @param string $languageCode language code of the translation + */ + public function deleteTranslationFromContent($contentId, $languageCode); + /** * Remove the specified Translation from the given Version Draft of a Content Object. *