* @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\Pack; /** * Interface LanguagePackInstallerInterface defines contract for language pack installer. */ interface LanguagePackInstallerInterface { /** * Downloads and installs language pack data. * * @param string $iso -3166-2 alpha-2 format code * * @return array - if not empty then it contains errors. In another case the function * has been executed successfully */ public function downloadAndInstallLanguagePack($iso); }