chamilo/chamilo-lms

View on GitHub
src/CoreBundle/Entity/UserGroupRelUserGroup.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/* For licensing terms, see /license.txt */

namespace Chamilo\CoreBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * GroupRelGroup.
 */
#[ORM\Table(name: 'usergroup_rel_usergroup')]
#[ORM\Entity]
class UserGroupRelUserGroup
{
    #[ORM\Column(name: 'id', type: 'integer')]
    #[ORM\Id]
    #[ORM\GeneratedValue]
    protected ?int $id = null;

    #[ORM\Column(name: 'group_id', type: 'integer', nullable: false)]
    protected int $groupId;

    #[ORM\Column(name: 'subgroup_id', type: 'integer', nullable: false)]
    protected int $subgroupId;

    #[ORM\Column(name: 'relation_type', type: 'integer', nullable: false)]
    protected int $relationType;

    /**
     * Set groupId.
     *
     * @return $this
     */
    public function setGroupId(int $groupId)
    {
        $this->groupId = $groupId;

        return $this;
    }

    /**
     * Get groupId.
     *
     * @return int
     */
    public function getGroupId()
    {
        return $this->groupId;
    }

    /**
     * Set subgroupId.
     *
     * @return $this
     */
    public function setSubgroupId(int $subgroupId)
    {
        $this->subgroupId = $subgroupId;

        return $this;
    }

    /**
     * Get subgroupId.
     *
     * @return int
     */
    public function getSubgroupId()
    {
        return $this->subgroupId;
    }

    /**
     * Set relationType.
     *
     * @return $this
     */
    public function setRelationType(int $relationType)
    {
        $this->relationType = $relationType;

        return $this;
    }

    /**
     * Get relationType.
     *
     * @return int
     */
    public function getRelationType()
    {
        return $this->relationType;
    }

    /**
     * Get id.
     *
     * @return int
     */
    public function getId()
    {
        return $this->id;
    }
}