* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Language\Copier; /** * Interface LanguageCopierConfigInterface defines configuration, required for copying a language. */ interface LanguageCopierConfigInterface { /** * Get the theme name that language will be copied from. * * @return string */ public function getThemeFrom(); /** * Get the language name to copy from. * * @return string */ public function getLanguageFrom(); /** * Get the theme name that language will be copied to. * * @return string */ public function getThemeTo(); /** * Get the language name to copy to. * * @return string */ public function getLanguageTo(); }