# give/4.16.9/src/DonationForms/Rules/BillingAddressStateRule.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 38 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/DonationForms/Rules/BillingAddressStateRule.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/DonationForms/Rules/BillingAddressStateRule.php
- Modified: 2023-10-16T17:55:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/DonationForms/Rules/BillingAddressStateRule.php#L10-L20`.

```php
<?php
namespace Give\DonationForms\Rules;

use Closure;
use Give\Vendors\StellarWP\Validation\Contracts\ValidationRule;

/**
 * @since 3.0.0
 */
class BillingAddressStateRule implements ValidationRule
{
    /**
     * @since 3.0.0
     */
    public static function id(): string
    {
        return 'state';
    }

    /**
     * @since 3.0.0
     */
    public static function fromString(string $options = null): ValidationRule
    {
        return new self();
    }

    /**
     * @since 3.0.0
     */
    public function __invoke($value, Closure $fail, string $key, array $values)
    {
        if ( !$value && !array_key_exists( $values['country'], give_states_not_required_country_list() ) ) {
             $fail(__('State required.', 'give'));
		}
    }
}

```
