Files
exchange-2.0/app/Classes/ValueObjects/Constants/Vouchers.php
T

19 lines
481 B
PHP

<?php
namespace App\Classes\ValueObjects\Constants;
final class Vouchers {
public const WELCOME_50_PERCENT_OFF = 'WELCOME50%OFF';
public const SORRY_50 = 'SORRY50';
public const SORRY_100 = 'SORRY100';
public const SORRY_200 = 'SORRY200';
const OPTIONS_SORRY = [
['text' => 'SORRY 50', 'id' => Vouchers::SORRY_50],
['text' => 'SORRY 100', 'id' => Vouchers::SORRY_100],
['text' => 'SORRY 200', 'id' => Vouchers::SORRY_200],
];
}