for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the Zikula package.
*
* Copyright Zikula - https://ziku.la/
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Zikula\UsersBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Nucleos\UserBundle\Model\Group as BaseGroup;
#[ORM\Entity]
#[ORM\Table(name: 'nucleos_user__group')]
class Group extends BaseGroup
{
#[ORM\Id]
#[ORM\Column]
#[ORM\GeneratedValue(strategy: 'AUTO')]
protected ?int $id = null;
public function getId(): ?int
return $this->id;
}
public function setId(?int $id): self
$this->id = $id;
return $this;