Snips/src/Entity/Email.php
tim bf83e5aabd Expand user and allow everybody to register
Automatically login after registering
2023-04-03 22:19:28 +02:00

21 lines
331 B
PHP

<?php
namespace App\Entity;
use App\Repository\EmailRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: EmailRepository::class)]
class Email
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
public function getId(): ?int
{
return $this->id;
}
}