user = $user; $this->entries = new ArrayCollection(); } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set label * * @param string $label * @return Tag */ public function setLabel($label) { $this->label = $label; return $this; } /** * Get label * * @return string */ public function getLabel() { return $this->label; } public function addEntry(Entry $entry) { $this->entries[] = $entry; } /** * @return User */ public function getUser() { return $this->user; } }