src/Entity/XeroTrackingCategory.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\XeroTrackingCategoryRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassXeroTrackingCategoryRepository::class)]
  8. class XeroTrackingCategory
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private $id;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private $name;
  16.     #[ORM\Column(type'string'length255nullabletrue)]
  17.     private $xeroId;
  18.     #[ORM\OneToMany(mappedBy'xeroTrackingCategory'targetEntityXeroTrackingOption::class)]
  19.     private $xeroTrackingOptions;
  20.     public function __construct()
  21.     {
  22.         $this->xeroTrackingOptions = new ArrayCollection();
  23.     }
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getName(): ?string
  29.     {
  30.         return $this->name;
  31.     }
  32.     public function setName(?string $name): self
  33.     {
  34.         $this->name $name;
  35.         return $this;
  36.     }
  37.     public function getXeroId(): ?string
  38.     {
  39.         return $this->xeroId;
  40.     }
  41.     public function setXeroId(?string $xeroId): self
  42.     {
  43.         $this->xeroId $xeroId;
  44.         return $this;
  45.     }
  46.     /**
  47.      * @return Collection<int, XeroTrackingOption>
  48.      */
  49.     public function getXeroTrackingOptions(): Collection
  50.     {
  51.         return $this->xeroTrackingOptions;
  52.     }
  53.     public function addXeroTrackingOption(XeroTrackingOption $xeroTrackingOption): self
  54.     {
  55.         if (!$this->xeroTrackingOptions->contains($xeroTrackingOption)) {
  56.             $this->xeroTrackingOptions[] = $xeroTrackingOption;
  57.             $xeroTrackingOption->setXeroTrackingCategory($this);
  58.         }
  59.         return $this;
  60.     }
  61.     public function removeXeroTrackingOption(XeroTrackingOption $xeroTrackingOption): self
  62.     {
  63.         if ($this->xeroTrackingOptions->removeElement($xeroTrackingOption)) {
  64.             // set the owning side to null (unless already changed)
  65.             if ($xeroTrackingOption->getXeroTrackingCategory() === $this) {
  66.                 $xeroTrackingOption->setXeroTrackingCategory(null);
  67.             }
  68.         }
  69.         return $this;
  70.     }
  71. }