src/Entity/CubaCustomsCategory.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * CubaCustomsCategory
  8.  *
  9.  * @ORM\Table(name="cuba_customs_category", uniqueConstraints={@ORM\UniqueConstraint(name="name", columns={"name"})})
  10.  * @ORM\Entity()
  11.  */
  12. class CubaCustomsCategory
  13. {
  14.     /**
  15.      * @var int
  16.      *
  17.      * @ORM\Column(name="id", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="IDENTITY")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @var string
  24.      *
  25.      * @ORM\Column(name="name", type="string", length=255, nullable=false)
  26.      */
  27.     private $name;
  28.     /**
  29.      * @ORM\OneToMany(targetEntity=Item::class, mappedBy="cubaCustomsCategory")
  30.      */
  31.     private $items;
  32.     public function __construct()
  33.     {
  34.         $this->items = new ArrayCollection();
  35.     }
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getName(): ?string
  41.     {
  42.         return $this->name;
  43.     }
  44.     public function setName(string $name): self
  45.     {
  46.         $this->name $name;
  47.         return $this;
  48.     }
  49.     public function __toString()
  50.     {
  51.         return $this->name;
  52.     }
  53.     /**
  54.      * @return Collection<int, Item>
  55.      */
  56.     public function getItems(): Collection
  57.     {
  58.         return $this->items;
  59.     }
  60.     public function addItem(Item $item): self
  61.     {
  62.         if (!$this->items->contains($item)) {
  63.             $this->items[] = $item;
  64.             $item->setCubaCustomsCategory($this);
  65.         }
  66.         return $this;
  67.     }
  68.     public function removeItem(Item $item): self
  69.     {
  70.         if ($this->items->removeElement($item)) {
  71.             // set the owning side to null (unless already changed)
  72.             if ($item->getCubaCustomsCategory() === $this) {
  73.                 $item->setCubaCustomsCategory(null);
  74.             }
  75.         }
  76.         return $this;
  77.     }
  78. }