Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 * The list of potential statuses a Bitcoin_Wallet could be in.
4 *
5 * @package    brianhenryie/bh-wp-bitcoin-gateway
6 */
7
8namespace BrianHenryIE\WP_Bitcoin_Gateway\API\Model\Wallet;
9
10enum Bitcoin_Wallet_Status: string {
11
12    case ACTIVE   = 'active';
13    case INACTIVE = 'inactive';
14
15    // Inherent WordPress status.
16    case DRAFT   = 'draft';
17    case PUBLISH = 'publish';
18    case ALL     = 'all';
19}