* @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 LanguageValidatorInterface defines contract for LanguageValidator. */ interface LanguageValidatorInterface { /** * Checks if language is installed by comparing locale. * * @param string $locale * * @return bool */ public function isInstalledByLocale($locale); }