File: D:/HostingSpaces/SBogers10/helder.komma.pro/app/Komma/Globalization/CultureTypes.php
<?php
namespace App\Komma\Globalization;
use App\Komma\Base\Enum;
/**
* Class CultureTypes
*
* Defines the types of culture lists that can be retrieved using the GetCultures(CultureTypes) method of CultureInfo
*
* @package App\Komma\Globalization
*/
abstract class CultureTypes extends Enum
{
const ALL_CULTURES = 1; //All cultures, including neutral and specific cultures
const NEUTRAL_CULTURES = 2; //Cultures that are associated with a language but are not specific to a country/region. Example 'NL'
const SPECIFIC_CULTURES = 3; //Cultures that are specific to a country/region. Example nl-BE
}