src/Entity/Booking.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BookingRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassBookingRepository::class)]
  7. class Booking
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $nom null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?float $prix null;
  17.     #[ORM\Column]
  18.     private ?int $destinationId null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $destnationName null;
  21.     #[ORM\Column]
  22.     private ?int $nbOfSeats null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?float $total null;
  25.     #[ORM\Column]
  26.     private ?int $status null;
  27.     #[ORM\Column]
  28.     private ?int $showBooking null;
  29.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  30.     private ?\DateTimeInterface $dateBooking null;
  31.     #[ORM\Column(length255)]
  32.     private ?string $mail null;
  33.     #[ORM\Column(length255)]
  34.     private ?string $phone null;
  35.     public function __construct()
  36.     {
  37.         $this->nbOfSeats 1;
  38.         $this->showBooking 0;
  39.         $this->destinationId 1;
  40.         $this->total 0;
  41.         $this->status 0;
  42.     }
  43.     public function getId(): ?int
  44.     {
  45.         return $this->id;
  46.     }
  47.     public function getNom(): ?string
  48.     {
  49.         return $this->nom;
  50.     }
  51.     public function setNom(string $nom): self
  52.     {
  53.         $this->nom $nom;
  54.         return $this;
  55.     }
  56.     public function getPrix(): ?float
  57.     {
  58.         return $this->prix;
  59.     }
  60.     public function setPrix(?float $prix): self
  61.     {
  62.         $this->prix $prix;
  63.         return $this;
  64.     }
  65.     public function getDestinationId(): ?int
  66.     {
  67.         return $this->destinationId;
  68.     }
  69.     public function setDestinationId(int $destinationId): self
  70.     {
  71.         $this->destinationId $destinationId;
  72.         return $this;
  73.     }
  74.     public function getDestnationName(): ?string
  75.     {
  76.         return $this->destnationName;
  77.     }
  78.     public function setDestnationName(?string $destnationName): self
  79.     {
  80.         $this->destnationName $destnationName;
  81.         return $this;
  82.     }
  83.     public function getNbOfSeats(): ?int
  84.     {
  85.         return $this->nbOfSeats;
  86.     }
  87.     public function setNbOfSeats(int $nbOfSeats): self
  88.     {
  89.         $this->nbOfSeats $nbOfSeats;
  90.         return $this;
  91.     }
  92.     public function getTotal(): ?float
  93.     {
  94.         return $this->total;
  95.     }
  96.     public function setTotal(?float $total): self
  97.     {
  98.         $this->total $total;
  99.         return $this;
  100.     }
  101.     public function getStatus(): ?int
  102.     {
  103.         return $this->status;
  104.     }
  105.     public function setStatus(int $status): self
  106.     {
  107.         $this->status $status;
  108.         return $this;
  109.     }
  110.     public function getShowBooking(): ?int
  111.     {
  112.         return $this->showBooking;
  113.     }
  114.     public function setShow(int $showBooking): self
  115.     {
  116.         $this->showBooking $showBooking;
  117.         return $this;
  118.     }
  119.     public function getDateBooking(): ?\DateTimeInterface
  120.     {
  121.         return $this->dateBooking;
  122.     }
  123.     public function setDateBooking(\DateTimeInterface $dateBooking): self
  124.     {
  125.         $this->dateBooking $dateBooking;
  126.         return $this;
  127.     }
  128.     public function getMail(): ?string
  129.     {
  130.         return $this->mail;
  131.     }
  132.     public function setMail(string $mail): self
  133.     {
  134.         $this->mail $mail;
  135.         return $this;
  136.     }
  137.     public function getPhone(): ?string
  138.     {
  139.         return $this->phone;
  140.     }
  141.     public function setPhone(string $phone): self
  142.     {
  143.         $this->phone $phone;
  144.         return $this;
  145.     }
  146. }