Files
2023-07-17 21:29:19 +08:00

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],
];
}