| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\DonationForms\ValueObjects; |
| 4 |
|
| 5 |
use Give\Framework\Support\ValueObjects\Enum; |
| 6 |
|
| 7 |
/** |
| 8 |
* @since 3.4.0 |
| 9 |
* |
| 10 |
* @method static DonationFormErrorTypes BACKGROUND() |
| 11 |
* @method static DonationFormErrorTypes COVER() |
| 12 |
* @method static DonationFormErrorTypes ABOVE() |
| 13 |
* @method static DonationFormErrorTypes CENTER() |
| 14 |
* @method bool isBackground() |
| 15 |
* @method bool isCover() |
| 16 |
* @method bool isAbove() |
| 17 |
* @method bool isCenter() |
| 18 |
*/ |
| 19 |
class DesignSettingsImageStyle extends Enum |
| 20 |
{ |
| 21 |
const BACKGROUND = 'background'; |
| 22 |
const COVER = 'cover'; |
| 23 |
const ABOVE = 'above'; |
| 24 |
const CENTER = 'center'; |
| 25 |
} |
| 26 |
|