mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-20 13:04:02 +00:00
19 lines
950 B
PHP
19 lines
950 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
class Milestones
|
|
{
|
|
public const MILESTONE_1 = 'MILESTONE 1'; //Has 2 successful bookings
|
|
// public const MILESTONE_DEMO_1 = 'MILESTONE_DEMO_1 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';
|
|
}
|