* @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\Encoding; /** * Class CharsetEncoding defines file chartset encoding constants. */ final class CharsetEncoding { public const UTF_8 = 'utf-8'; public const ISO_8859_1 = 'iso-8859-1'; /** * This class is not meant to be instantiated as it is used to access encoding constants only. */ private function __construct() { } }