src/Entity/Contract.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContractRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassContractRepository::class)]
  8. class Contract
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private $id;
  14.     #[ORM\Column(type'string'length255)]
  15.     private ?string $name null;
  16.     #[ORM\Column(type'string'length255)]
  17.     private ?string $nameDisplay null;
  18.     #[ORM\Column(type'integer'nullabletrueoptions: ['default' => 0])]
  19.     private ?int $ordering null;
  20.     #[ORM\Column(type'boolean'nullabletrueoptions: ['default' => 0])]
  21.     private ?bool $status null;
  22.     #[ORM\OneToMany(targetEntityOffer::class, mappedBy'contract')]
  23.     private Collection $offers;
  24.     public function __construct()
  25.     {
  26.         $this->offers = new ArrayCollection();
  27.     }
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getName(): ?string
  33.     {
  34.         return $this->name;
  35.     }
  36.     public function setName(string $name): self
  37.     {
  38.         $this->name $name;
  39.         return $this;
  40.     }
  41.     public function getNameDisplay(): ?string
  42.     {
  43.         return $this->nameDisplay;
  44.     }
  45.     public function setNameDisplay(string $nameDisplay): self
  46.     {
  47.         $this->nameDisplay $nameDisplay;
  48.         return $this;
  49.     }
  50.     public function getOrdering(): ?int
  51.     {
  52.         return $this->ordering;
  53.     }
  54.     public function setOrdering(?int $ordering): self
  55.     {
  56.         $this->ordering $ordering;
  57.         return $this;
  58.     }
  59.     public function getStatus(): ?bool
  60.     {
  61.         return $this->status;
  62.     }
  63.     public function setStatus(?bool $status): self
  64.     {
  65.         $this->status $status;
  66.         return $this;
  67.     }
  68.     /**
  69.      * @return Collection<int, Offer>
  70.      */
  71.     public function getOffers(): Collection
  72.     {
  73.         return $this->offers;
  74.     }
  75.     public function addOffer(Offer $offer): self
  76.     {
  77.         if (!$this->offers->contains($offer)) {
  78.             $this->offers[] = $offer;
  79.             $offer->setContract($this);
  80.         }
  81.         return $this;
  82.     }
  83.     public function removeOffer(Offer $offer): self
  84.     {
  85.         if ($this->offers->removeElement($offer)) {
  86.             // set the owning side to null (unless already changed)
  87.             if ($offer->getContract() === $this) {
  88.                 $offer->setContract(null);
  89.             }
  90.         }
  91.         return $this;
  92.     }
  93. }