# give/4.16.9/src/DonationForms/ValueObjects/RegistrationOptions.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/DonationForms/ValueObjects/RegistrationOptions.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/DonationForms/ValueObjects/RegistrationOptions.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/ValueObjects/RegistrationOptions.php#L10-L20`.

```php
<?php

namespace Give\DonationForms\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;

/**
 * @since 3.0.0
 *
 * @method static RegistrationOptions NONE()
 * @method static RegistrationOptions REGISTRATION()
 * @method static RegistrationOptions LOGIN()
 * @method static RegistrationOptions REGISTRATION_LOGIN()
 * @method bool isNone()
 * @method bool isRegistration()
 * @method bool isLogin()
 * @method bool isRegisterAndLogin()
 */
class RegistrationOptions extends Enum
{
    const NONE = 'none';
    const REGISTRATION = 'registration';
    const LOGIN = 'login';
    const REGISTRATION_LOGIN = 'register_and_login';
}

```
