TaskTypeEnum.php
1 <?php 2 3 namespace App\Enums; 4 5 /* 6 * TaskTypeEnum 7 8 * Ideally, only the tasks that are part of the certification automatic process 9 * should have its type defined here. 10 */ 11 12 enum TaskTypeEnum 13 { 14 case default; 15 16 case assignCertifiers; 17 case startCertification; 18 case conveneEvaluationStartMeet; 19 case draftEvaluationKickOffAct; 20 case sendActEvaluationStart; 21 case createDraftCertificationReport; 22 case convenePreResolutionMeet; 23 case draftPreResolutionHearingAct; 24 case sendPreHearingMinutes; 25 case draftResolutionProposal; 26 case processResolution; 27 case followUpResolution; 28 case followUpSentToBoe; 29 case followUpPublishedInBoe; 30 case followUpCertificateSent; 31 case finalizeCertificationReport; 32 case updateCertifiedToeInformation; 33 case updateCertifiedProductsList; 34 case publishCertifiedProductOnWeb; 35 case closeDossier; 36 37 case sendEtr; 38 case sendEtrp; 39 40 case validateEtr; 41 case validateEtrp; 42 case certificationRequestReceived; 43 }