<?php
namespace CodersLab\Lms\SharedKernel\Domain\IdentityAccess;
use CodersLab\Lms\SharedKernel\Domain\ValueObject\AbstractEnum;
/**
* @method static self POLISH()
* @method static self ENGLISH()
* @method static self ROMANIAN()
* @method static self GERMAN()
* @method static self SPANISH()
* @method static self INDONESIAN()
*/
final class UserLanguage extends AbstractEnum
{
private const POLISH = 'pl';
private const ENGLISH = 'en';
private const ROMANIAN = 'ro';
private const GERMAN = 'de';
private const INDONESIAN = 'id';
private const SPANISH = 'es';
}