| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\FormBuilder\ValueObjects; |
| 4 |
|
| 5 |
use Give\Framework\Support\ValueObjects\Enum; |
| 6 |
|
| 7 |
/** |
| 8 |
* @since 3.0.0 |
| 9 |
* |
| 10 |
* @method static EditorMode DESIGN() |
| 11 |
* @method static EditorMode SCHEMA() |
| 12 |
* @method bool isDesign() |
| 13 |
* @method bool isSchema() |
| 14 |
*/ |
| 15 |
class EditorMode extends Enum |
| 16 |
{ |
| 17 |
const DESIGN = 'design'; |
| 18 |
const SCHEMA = 'schema'; |
| 19 |
} |
| 20 |
|