| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | enum ChargeBackStatus: string |
||
| 18 | { |
||
| 19 | case WARNING_UNDER_REVIEW = 'warning_under_review'; |
||
| 20 | case WARNING_NEEDS_RESPONSE = 'warning_need_response'; |
||
| 21 | case NEED_RESPONSE = 'needs_response'; |
||
| 22 | case UNDER_REVIEW = 'under_review'; |
||
| 23 | case CHARGE_REFUNDED = 'charge_refunded'; |
||
| 24 | case WON = 'won'; |
||
| 25 | case LOST = 'lost'; |
||
| 26 | |||
| 27 | public static function fromName(string $name): self |
||
| 37 |