src/Entity/Tag.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class Tag {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string
  11.      */
  12.     private $tagName;
  13.     /**
  14.      * @var \App\Entity\TagGroup
  15.      */
  16.     private $tagGroup;
  17.     /**
  18.      * Get id
  19.      *
  20.      * @return integer
  21.      */
  22.     public function getId() {
  23.         return $this->id;
  24.     }
  25.     /**
  26.      * Set tagName
  27.      *
  28.      * @param string $tagName
  29.      *
  30.      * @return Tag
  31.      */
  32.     public function setTagName($tagName) {
  33.         $this->tagName $tagName;
  34.         return $this;
  35.     }
  36.     /**
  37.      * Get tagName
  38.      *
  39.      * @return string
  40.      */
  41.     public function getTagName() {
  42.         return $this->tagName;
  43.     }
  44.     /**
  45.      * Set tagGroup
  46.      *
  47.      * @param \App\Entity\TagGroup $tagGroup
  48.      *
  49.      * @return Tag
  50.      */
  51.     public function setTagGroup(\App\Entity\TagGroup $tagGroup null) {
  52.         $this->tagGroup $tagGroup;
  53.         return $this;
  54.     }
  55.     /**
  56.      * Get tagGroup
  57.      *
  58.      * @return \App\Entity\TagGroup
  59.      */
  60.     public function getTagGroup() {
  61.         return $this->tagGroup;
  62.     }
  63. }