| 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 DesignSettingsLogoPosition LEFT() |
| 11 |
* @method static DesignSettingsLogoPosition CENTER() |
| 12 |
* @method static DesignSettingsLogoPosition RIGHT() |
| 13 |
* @method bool isLeft() |
| 14 |
* @method bool isCenter() |
| 15 |
* @method bool isRight() |
| 16 |
*/ |
| 17 |
class DesignSettingsLogoPosition extends Enum |
| 18 |
{ |
| 19 |
const LEFT = 'left'; |
| 20 |
const CENTER = 'center'; |
| 21 |
const RIGHT = 'right'; |
| 22 |
} |
| 23 |
|