• File: DonationFormErrorTypes.php
  • Full Path: /home/bravrvjk/itiministry.org/wp-content/plugins/give/src/DonationForms/ValueObjects/DonationFormErrorTypes.php
  • Date Modified: 10/16/2023 9:55 PM
  • File size: 531 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Give\DonationForms\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;

/**
 * @since 3.0.0
 *
 * @method static DonationFormErrorTypes VALIDATION()
 * @method static DonationFormErrorTypes GATEWAY()
 * @method static DonationFormErrorTypes UNKNOWN()
 * @method bool isValidation()
 * @method bool isGateway()
 * @method bool isUnknown()
 */
class DonationFormErrorTypes extends Enum
{
    const VALIDATION = 'validation_error';
    const GATEWAY = 'gateway_error';
    const UNKNOWN = 'unknown_error';
}