37 lines
677 B
PHP
37 lines
677 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use BenSampo\Enum\Enum;
|
|
|
|
/**
|
|
* @method static static supplierSelect()
|
|
* @method static static parameter()
|
|
* @method static static productSelect()
|
|
* @method static static invoice()
|
|
* @method static static send()
|
|
* @method static static sent()
|
|
* @method static static confirmed()
|
|
*/
|
|
final class OrderStatusEnum extends Enum
|
|
{
|
|
const supplierSelect = 'supplierSelect';
|
|
|
|
const parameter = 'parameter';
|
|
|
|
const productSelect = 'productSelect';
|
|
|
|
const invoice = 'invoice';
|
|
|
|
const send = 'send';
|
|
|
|
const sent = 'sent';
|
|
|
|
const confirmed = 'confirmed';
|
|
|
|
const archived = 'archived';
|
|
/*
|
|
const = '';
|
|
*/
|
|
}
|