Files
exchange-2.0/app/Classes/ValueObjects/Constants/MilestoneCreationOptions.php

21 lines
922 B
PHP

<?php
namespace App\Classes\ValueObjects\Constants;
class MilestoneCreationOptions
{
const OPTIONS_MILESTONE_NAME= [
['text' => 'MILESTONE 1', 'id' => Milestones::MILESTONE_1],
// ['text' => 'MILESTONE DEMO 1', 'id' => Milestones::MILESTONE_DEMO_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],
];
}