src/Entity/Department.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DepartmentRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. /**
  9.  * @ORM\Entity(repositoryClass=DepartmentRepository::class)
  10.  */
  11. class Department
  12. {
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255)
  21.      */
  22.     private $name;
  23.     /**
  24.      * @Gedmo\Slug(fields={"name"}, unique=true)
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $slug;
  28.     /**
  29.      * @ORM\Column(type="boolean")
  30.      */
  31.     private $status false;
  32.     /**
  33.      * @ORM\OneToMany(targetEntity=Transporteur::class, mappedBy="department")
  34.      */
  35.     private $transporteurs;
  36.     /**
  37.      * @ORM\ManyToOne(targetEntity=Country::class, inversedBy="departments")
  38.      * @ORM\JoinColumn(nullable=true)
  39.      */
  40.     private $country;
  41.     public function __construct()
  42.     {
  43.         $this->transporteurs = new ArrayCollection();
  44.     }
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getName(): ?string
  50.     {
  51.         return $this->name;
  52.     }
  53.     public function setName(string $name): self
  54.     {
  55.         $this->name $name;
  56.         return $this;
  57.     }
  58.     public function getSlug(): ?string
  59.     {
  60.         return $this->slug;
  61.     }
  62.     public function setSlug(string $slug): self
  63.     {
  64.         $this->slug $slug;
  65.         return $this;
  66.     }
  67.     public function isStatus(): ?bool
  68.     {
  69.         return $this->status;
  70.     }
  71.     public function setStatus(bool $status): self
  72.     {
  73.         $this->status $status;
  74.         return $this;
  75.     }
  76.     /**
  77.      * @return Collection<int, Transporteur>
  78.      */
  79.     public function getTransporteurs(): Collection
  80.     {
  81.         return $this->transporteurs;
  82.     }
  83.     public function addTransporteur(Transporteur $transporteur): self
  84.     {
  85.         if (!$this->transporteurs->contains($transporteur)) {
  86.             $this->transporteurs[] = $transporteur;
  87.             $transporteur->setDepartment($this);
  88.         }
  89.         return $this;
  90.     }
  91.     public function removeTransporteur(Transporteur $transporteur): self
  92.     {
  93.         if ($this->transporteurs->removeElement($transporteur)) {
  94.             // set the owning side to null (unless already changed)
  95.             if ($transporteur->getDepartment() === $this) {
  96.                 $transporteur->setDepartment(null);
  97.             }
  98.         }
  99.         return $this;
  100.     }
  101.     public function getCountry(): ?Country
  102.     {
  103.         return $this->country;
  104.     }
  105.     public function setCountry(?Country $country): self
  106.     {
  107.         $this->country $country;
  108.         return $this;
  109.     }
  110. }