fix registration, login and billing

This commit is contained in:
Dennis Eichhorn 2023-03-26 22:54:10 +00:00
parent 2a7395010f
commit 90ebcafb31

View File

@ -1,36 +0,0 @@
<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package Modules\Profile\Models
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace Modules\Profile\Models;
use phpOMS\Stdlib\Base\Enum;
/**
* Contact type enum.
*
* @package Modules\Profile\Models
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
abstract class ContactType extends Enum
{
public const PHONE = 1;
public const FAX = 2;
public const WEBSITE = 3;
public const EMAIL = 4;
}