?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/



?? Go up: /home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src

?? Viewing: VendorStatus.php

<?php

declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;

/**
 * The status of the [Vendor]($m/Vendor),
 * whether a [Vendor]($m/Vendor) is active or inactive.
 */
class VendorStatus
{
    /**
     * Vendor is active and can receive purchase orders.
     */
    public const ACTIVE = 'ACTIVE';
    /**
     * Vendor is inactive and cannot receive purchase orders.
     */
    public const INACTIVE = 'INACTIVE';
}


??

??