| 1: | <?php |
| 2: | |
| 3: | namespace Aurora\Modules\Contacts\Enums; |
| 4: | |
| 5: | class PrimaryPhone extends \Aurora\System\Enums\AbstractEnumeration |
| 6: | { |
| 7: | public const Mobile = 0; |
| 8: | public const Personal = 1; |
| 9: | public const Business = 2; |
| 10: | |
| 11: | /** |
| 12: | * @var array |
| 13: | */ |
| 14: | protected $aConsts = array( |
| 15: | 'Mobile' => self::Mobile, |
| 16: | 'Personal' => self::Personal, |
| 17: | 'Business' => self::Business |
| 18: | ); |
| 19: | } |
| 20: |