MeetTypeEnum.php
1 <?php 2 3 namespace App\Enums; 4 5 use Spatie\Enum\Enum; 6 7 /** 8 * @method static self startMeeting() 9 * @method static self startAuditMeeting() 10 * @method static self dossierMeeting() 11 * @method static self estimationHearingMeeting() 12 * @method static self cancellationHearingMeeting() 13 * @method static self others() 14 */ 15 class MeetTypeEnum extends Enum 16 { 17 protected static function values(): array 18 { 19 //ACT 20 return [ 21 'startMeeting' => 1, // ReunionInicio 22 'startAuditMeeting' => 2, // ReunionInicioAuditoria 23 'dossierMeeting' => 3, // ReunionExpendiente 24 'estimationHearingMeeting' => 4, // ReunionAudienciaEstimatoria 25 'cancellationHearingMeeting' => 5, // ReunionAudienciaAnulacion 26 'others' => 6, 27 ]; 28 } 29 }