mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
18 lines
855 B
PHP
18 lines
855 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
class Milestones
|
|
{
|
|
public const MILESTONE_1 = 'MILESTONE 1'; //Authentication (Sign in) or CreateCustomerLogic (Sign up)
|
|
public const MILESTONE_2 = 'MILESTONE 2'; //Create Identification Document
|
|
public const MILESTONE_3 = 'MILESTONE 3'; //Assign Company to Segment Logic -segment.assign when accept 1688
|
|
// public const MILESTONE_4 = 'MILESTONE 4'; //Create Bank Logic (Transfer Now from dashboard)
|
|
// public const MILESTONE_5 = 'MILESTONE 5'; //Create Booking Logic
|
|
// public const MILESTONE_6 = 'MILESTONE 6'; //Create Address Logic (At transfer page before create booking)
|
|
// public const MILESTONE_7 = 'MILESTONE 7';
|
|
// public const MILESTONE_8 = 'MILESTONE 8';
|
|
// public const MILESTONE_9 = 'MILESTONE 9';
|
|
// public const MILESTONE_10 = 'MILESTONE 10';
|
|
}
|