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\Importing\Domain\Enums; |
| 6 | |
| 7 | enum ImportLogEvent: string |
| 8 | { |
| 9 | case Uploaded = 'uploaded'; |
| 10 | case AnalysisStarted = 'analysis_started'; |
| 11 | case AnalysisCompleted = 'analysis_completed'; |
| 12 | case MappingUpdated = 'mapping_updated'; |
| 13 | case ImportQueued = 'import_queued'; |
| 14 | case ListingCreated = 'listing_created'; |
| 15 | case ListingUpdated = 'listing_updated'; |
| 16 | case ListingUnchanged = 'listing_unchanged'; |
| 17 | case ListingIgnored = 'listing_ignored'; |
| 18 | case ListingFailed = 'listing_failed'; |
| 19 | case ImportCompleted = 'import_completed'; |
| 20 | case ImportFailed = 'import_failed'; |
| 21 | case RetryStarted = 'retry_started'; |
| 22 | } |