automngr/app/Enums/PaymentType.php

16 lines
221 B
PHP

<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
/**
* @method static static Transaction()
* @method static static Cash()
*/
final class PaymentType extends Enum
{
const Transaction = 0;
const Cash = 1;
}