src/Entity/AttestationTmp.php line 12
<?phpnamespace App\Entity;use App\Repository\AttestationTmpRepository;use Doctrine\Common\Collections\ArrayCollection;use Doctrine\Common\Collections\Collection;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: AttestationTmpRepository::class)]class AttestationTmp{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255, nullable: true)]private ?string $firstname = null;#[ORM\Column(length: 255, nullable: true)]private ?string $lastname = null;#[ORM\Column(length: 255, nullable: true)]private ?string $mail = null;#[ORM\Column(length: 255)]private ?string $theme = null;#[ORM\Column(length: 255, nullable: true)]private ?string $title = null;#[ORM\Column(type: Types::SMALLINT)]private ?int $status = null;#[ORM\Column(type: 'datetime', nullable: true)]private $createdAt;#[ORM\Column(type: 'datetime', nullable: true)]private $updatedAt;#[ORM\ManyToOne(targetEntity: Evenement::class)] // , inversedBy: 'inscriptions'#[ORM\JoinColumn(nullable: true)]private ?Evenement $evenement = null;public function __construct(){}public function getId(): ?int{return $this->id;}public function getFirstname(): ?string{return $this->firstname;}public function setFirstname(string $firstname): self{$this->firstname = $firstname;return $this;}public function getLastname(): ?string{return $this->lastname;}public function setLastname(string $lastname): self{$this->lastname = $lastname;return $this;}public function getMail(): ?string{return $this->mail;}public function setMail(string $mail): self{$this->mail = $mail;return $this;}public function getTheme(): ?string{return $this->theme;}public function setTheme(string $theme): self{$this->theme = $theme;return $this;}public function getTitle(): ?string{return $this->title;}public function setTitle(string $title): self{$this->title = $title;return $this;}public function getStatus(): ?int{return $this->status;}public function setStatus(int $status): self{$this->status = $status;return $this;}public function getEvenement(): ?Evenement{return $this->evenement;}public function getCreatedAt(): ?\DateTimeInterface{return $this->createdAt;}public function setCreatedAt(\DateTimeInterface $createdAt): self{$this->createdAt = $createdAt;return $this;}public function getUpdatedAt(): ?\DateTimeInterface{return $this->updatedAt;}public function setUpdatedAt(?\DateTimeInterface $updatedAt): self{$this->updatedAt = $updatedAt;return $this;}public function setEvenement(?Evenement $evenement): self{$this->evenement = $evenement;return $this;}}