src/Entity/XeroTrackingOption.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\XeroTrackingOptionRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassXeroTrackingOptionRepository::class)]
  6. class XeroTrackingOption
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'string'length255nullabletrue)]
  13.     private $name;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private $xeroId;
  16.     #[ORM\ManyToOne(targetEntityXeroTrackingCategory::class, inversedBy'xeroTrackingOptions')]
  17.     private $xeroTrackingCategory;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getName(): ?string
  23.     {
  24.         return $this->name;
  25.     }
  26.     public function setName(?string $name): self
  27.     {
  28.         $this->name $name;
  29.         return $this;
  30.     }
  31.     public function getXeroId(): ?string
  32.     {
  33.         return $this->xeroId;
  34.     }
  35.     public function setXeroId(?string $xeroId): self
  36.     {
  37.         $this->xeroId $xeroId;
  38.         return $this;
  39.     }
  40.     public function getXeroTrackingCategory(): ?XeroTrackingCategory
  41.     {
  42.         return $this->xeroTrackingCategory;
  43.     }
  44.     public function setXeroTrackingCategory(?XeroTrackingCategory $xeroTrackingCategory): self
  45.     {
  46.         $this->xeroTrackingCategory $xeroTrackingCategory;
  47.         return $this;
  48.     }
  49. }