You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
407B

  1. <?php
  2. namespace App\Entity\User;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Lc\SovBundle\Model\User\GroupUserModel;
  5. /**
  6. * @ORM\Entity(repositoryClass=GroupUserRepository::class)
  7. */
  8. class GroupUser extends GroupUserModel
  9. {
  10. /**
  11. * @ORM\Id
  12. * @ORM\GeneratedValue
  13. * @ORM\Column(type="integer")
  14. */
  15. private $id;
  16. public function getId(): ?int
  17. {
  18. return $this->id;
  19. }
  20. }