Add warranty class name value collection
This commit is contained in:
parent
0654895dab
commit
87ebf9f19b
1 changed files with 14 additions and 0 deletions
14
src/Ramcar/WarrantyClass.php
Normal file
14
src/Ramcar/WarrantyClass.php
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Ramcar;
|
||||||
|
|
||||||
|
class WarrantyClass extends NameValue
|
||||||
|
{
|
||||||
|
const WTY_PRIVATE = 'private';
|
||||||
|
const WTY_COMMERCIAL = 'commercial';
|
||||||
|
|
||||||
|
const COLLECTION = [
|
||||||
|
'private' => 'Private',
|
||||||
|
'commercial' => 'Commercial',
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue