Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace ImovelZapAi\Owners\Domain\Enums; |
| 6 | |
| 7 | enum ListingHistoryEvent: string |
| 8 | { |
| 9 | case OwnerCreated = 'owner_created'; |
| 10 | case OpportunityCreated = 'opportunity_created'; |
| 11 | case StageChanged = 'stage_changed'; |
| 12 | case EvaluationUpdated = 'evaluation_updated'; |
| 13 | case AgreementCreated = 'agreement_created'; |
| 14 | case AgreementActivated = 'agreement_activated'; |
| 15 | case VisitLinked = 'visit_linked'; |
| 16 | case PropertyLinked = 'property_linked'; |
| 17 | case Published = 'published'; |
| 18 | case Lost = 'lost'; |
| 19 | case Alert = 'alert'; |
| 20 | } |