resq/src/Ramcar/WarrantyStatus.php

18 lines
401 B
PHP

<?php
namespace App\Ramcar;
class WarrantyStatus extends NameValue
{
const ACTIVE = 'active';
const EXPIRED = 'expired';
const CLAIMED = 'claimed';
const CANCELLED = 'cancelled';
const COLLECTION = [
'active' => 'Active',
'expired' => 'Expired',
'claimed' => 'Claimed',
'cancelled' => 'Cancelled',
];
}