14 lines
203 B
PHP
14 lines
203 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class DiscountApply extends NameValue
|
|
{
|
|
const SRP = 'srp';
|
|
const OPL = 'opl';
|
|
|
|
const COLLECTION = [
|
|
'srp' => 'SRP',
|
|
'opl' => 'OPL',
|
|
];
|
|
}
|