mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
20 lines
835 B
PHP
20 lines
835 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
class MilestoneCreationOptions
|
|
{
|
|
const OPTIONS_MILESTONE_NAME= [
|
|
['text' => 'MILESTONE 1', 'id' => Milestones::MILESTONE_1],
|
|
['text' => 'MILESTONE 2', 'id' => Milestones::MILESTONE_2],
|
|
['text' => 'MILESTONE 3', 'id' => Milestones::MILESTONE_3],
|
|
// ['text' => 'MILESTONE 4', 'id' => Milestones::MILESTONE_4],
|
|
// ['text' => 'MILESTONE 5', 'id' => Milestones::MILESTONE_5],
|
|
// ['text' => 'MILESTONE 6', 'id' => Milestones::MILESTONE_6],
|
|
// ['text' => 'MILESTONE 7', 'id' => Milestones::MILESTONE_7],
|
|
// ['text' => 'MILESTONE 8', 'id' => Milestones::MILESTONE_8],
|
|
// ['text' => 'MILESTONE 9', 'id' => Milestones::MILESTONE_9],
|
|
// ['text' => 'MILESTONE 10', 'id' => Milestones::MILESTONE_10],
|
|
];
|
|
}
|