jingcai-php/app/Enums/SaleState.php

16 lines
249 B
PHP
Executable File

<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
/**
* @method static static Selling()
* @method static static StopSelling()
*/
final class SaleState extends Enum
{
const Selling = 'selling';
const StopSelling = 'stopSelling';
}