source: app/Enum/OfferStatus.php@ dfae77e

Last change on this file since dfae77e was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 22 months ago
  • Initial commit;
  • Property mode set to 100644
File size: 214 bytes
Line 
1<?php
2
3namespace App\Enum;
4
5enum 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.