src/Entity/Communicatie.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CommunicatieRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassCommunicatieRepository::class)]
  6. class Communicatie
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $naam null;
  14.     
  15.     public function __toString()
  16.     {
  17.         return $this->getNaam();
  18.     }
  19.     
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getNaam(): ?string
  25.     {
  26.         return $this->naam;
  27.     }
  28.     public function setNaam(string $naam): static
  29.     {
  30.         $this->naam $naam;
  31.         return $this;
  32.     }
  33. }