* @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; /** * Interface LanguageActivatorInterface defines contract for language activator. */ interface LanguageActivatorInterface { /** * Activate language. * * @param int $langId */ public function enable($langId); /** * Deactivate language. * * @param int $langId */ public function disable($langId); }