File "Status.php"
Full Path: /home/trinadezambia/public_html/gambling/app/Constants/Status.php
File size: 867 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Constants;
class Status {
const ENABLE = 1;
const DISABLE = 0;
const YES = 1;
const NO = 0;
const VERIFIED = 1;
const UNVERIFIED = 0;
CONST TICKET_OPEN = 0;
CONST TICKET_ANSWER = 1;
CONST TICKET_REPLY = 2;
CONST TICKET_CLOSE = 3;
CONST PRIORITY_LOW = 1;
CONST PRIORITY_MEDIUM = 2;
CONST PRIORITY_HIGH = 3;
const USER_ACTIVE = 1;
const USER_BAN = 0;
const KYC_UNVERIFIED = 0;
const KYC_PENDING = 2;
const KYC_VERIFIED = 1;
const GOOGLE_PAY = 5001;
const CUR_BOTH = 1;
const CUR_TEXT = 2;
const CUR_SYM = 3;
const WIN = 1;
const LOSS = 0;
const PUSH = 2;
const GAME_RUNNING = 0;
const GAME_FINISHED = 1;
const DIAMOND_PENDING = 0;
const DIAMOND_APPROVED = 1;
const DIAMOND_REJECTED = 2;
}