src/Entity/ConfigMessenger.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ConfigMessengerRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassConfigMessengerRepository::class)]
  7. class ConfigMessenger
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(nullabletrue)]
  14.     private ?int $preference null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?int $proposition null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?int $messenger null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $date_creation null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $date_update null;
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     public function getPreference(): ?int
  28.     {
  29.         return $this->preference;
  30.     }
  31.     public function setPreference(?int $preference): static
  32.     {
  33.         $this->preference $preference;
  34.         return $this;
  35.     }
  36.     public function getProposition(): ?int
  37.     {
  38.         return $this->proposition;
  39.     }
  40.     public function setProposition(?int $proposition): static
  41.     {
  42.         $this->proposition $proposition;
  43.         return $this;
  44.     }
  45.     public function getMessenger(): ?int
  46.     {
  47.         return $this->messenger;
  48.     }
  49.     public function setMessenger(?int $messenger): static
  50.     {
  51.         $this->messenger $messenger;
  52.         return $this;
  53.     }
  54.     public function getDateCreation(): ?\DateTimeInterface
  55.     {
  56.         return $this->date_creation;
  57.     }
  58.     public function setDateCreation(?\DateTimeInterface $date_creation): static
  59.     {
  60.         $this->date_creation $date_creation;
  61.         return $this;
  62.     }
  63.     public function getDateUpdate(): ?\DateTimeInterface
  64.     {
  65.         return $this->date_update;
  66.     }
  67.     public function setDateUpdate(?\DateTimeInterface $date_update): static
  68.     {
  69.         $this->date_update $date_update;
  70.         return $this;
  71.     }
  72. }