source:
app/Enum/OfferStatus.php
Last change on this file was dfae77e, checked in by , 2 years ago | |
---|---|
|
|
File size: 214 bytes |
Rev | Line | |
---|---|---|
[dfae77e] | 1 | <?php |
2 | ||
3 | namespace App\Enum; | |
4 | ||
5 | enum OfferStatus:string | |
6 | { | |
7 | case IN_PROGRESS = 'IN PROGRESS'; | |
8 | case WAITING_FOR_PAYMENT = 'WAITING FOR PAYMENT'; | |
9 | case COMPLETED = 'COMPLETED'; | |
10 | case DECLINED = 'DECLINED'; | |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.