src/Entity/Subcategory.php line 30

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace App\Entity;
  11. use Doctrine\Common\Collections\ArrayCollection;
  12. use Doctrine\Common\Collections\Collection;
  13. use Doctrine\ORM\Mapping as ORM;
  14. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  15. use Symfony\Component\Validator\Constraints as Assert;
  16. /**
  17.  * @ORM\Entity(repositoryClass="App\Repository\SubcategoryRepository")
  18.  * @ORM\Table(name="subcategory")
  19.  *
  20.  * Defines the properties of the Tag entity to represent the subcategory tags.
  21.  *
  22.  * See https://symfony.com/doc/current/doctrine.html#creating-an-entity-class
  23.  *
  24.  * @author Yonel Ceruto <yonelceruto@gmail.com>
  25.  */
  26. class Subcategory {
  27.     /**
  28.      * @ORM\Id
  29.      * @ORM\GeneratedValue
  30.      * @ORM\Column(type="integer")
  31.      */
  32.     private ?int $id null;
  33.     /**
  34.      * @ORM\Column(type="string", nullable=true)
  35.      */
  36.     private ?string $name null;
  37.     /**
  38.      * @ORM\Column(type="string", nullable=true)
  39.      */
  40.     private ?string $image null;
  41.     /**
  42.      * @ORM\Column(type="string", nullable=true)
  43.      */
  44.     private ?string $description null;
  45.     
  46.     /**
  47.      * @ORM\Column(type="boolean")
  48.      */
  49.     private $published;
  50.     /**
  51.      * @ORM\ManyToOne(targetEntity="App\Entity\Category", inversedBy="subcategories")
  52.      */
  53.     private $category;
  54.     
  55.     /**
  56.      * @ORM\Column(type="string", nullable=true)
  57.      */
  58.     private ?string $ordre null;
  59.     /**
  60.      * @ORM\ManyToMany(targetEntity="Experience", mappedBy="subcategories")
  61.      * @ORM\JoinColumn(nullable=true)
  62.      */
  63.     private Collection $experiences;
  64.     
  65.     public function __construct() {
  66.         $this->experiences = new ArrayCollection();
  67.     }
  68.     
  69.     public function getId(): ?int {
  70.         return $this->id;
  71.     }
  72.     public function getName(): ?string {
  73.         return $this->name;
  74.     }
  75.     public function getDescription(): ?string {
  76.         return $this->description;
  77.     }
  78.     public function getPublished() {
  79.         return $this->published;
  80.     }
  81.     public function getCategory() {
  82.         return $this->category;
  83.     }
  84.     public function setName(?string $name): void {
  85.         $this->name $name;
  86.     }
  87.     public function setDescription(?string $description): void {
  88.         $this->description $description;
  89.     }
  90.     public function setPublished($published): void {
  91.         $this->published $published;
  92.     }
  93.     public function setCategory($category): void {
  94.         $this->category $category;
  95.     }
  96.     public function getOrdre(): ?string {
  97.         return $this->ordre;
  98.     }
  99.     public function setOrdre(?string $ordre): void {
  100.         $this->ordre $ordre;
  101.     }
  102.     public function getImage(): ?string {
  103.         return $this->image;
  104.     }
  105.     public function setImage(?string $image): void {
  106.         $this->image $image;
  107.     }
  108.     
  109.      public function addExperience(Experience $experience): void {
  110.         if (!$this->experiences->contains($experience)) {
  111.             $this->experiences[] = $experience;
  112.         }
  113.     }
  114. }