HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/globfdxw/www/wp-content/plugins/give/src/Framework/Models/ValueObjects/Relationship.php
<?php

namespace Give\Framework\Models\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;

/**
 * Model Relationships
 *
 * @since 2.19.6
 *
 * @method static Relationship HAS_ONE();
 * @method static Relationship HAS_MANY();
 * @method static Relationship MANY_TO_MANY();
 * @method static Relationship BELONGS_TO();
 * @method static Relationship BELONGS_TO_MANY();
 */
class Relationship extends Enum
{
    const HAS_ONE = 'has-one';
    const HAS_MANY = 'has-many';
    const MANY_TO_MANY = 'many-to-many';
    const BELONGS_TO = 'belongs-to';
    const BELONGS_TO_MANY = 'belongs-to-many';
}