<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;class TagGroup{ /** * @var int */ private $id; /** * @var string */ private $groupName; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set groupName * * @param string $groupName * * @return ColorGroup */ public function setGroupName($groupName) { $this->groupName = $groupName; return $this; } /** * Get groupName * * @return string */ public function getGroupName() { return $this->groupName; }}