id; } /** * Set created * * @param datetime $created */ public function setCreated($created) { $this->created = $created; } /** * Get created * * @return datetime */ public function getCreated() { return $this->created; } // /** // * Set updated // * // * @param datetime $updated // */ // public function setUpdated($updated) // { // $this->updated = $updated; // } // // /** // * Get updated // * // * @return datetime // */ // public function getUpdated() // { // return $this->updated; // } /** * Set user * * @param Muzich\CoreBundle\Entity\User $user */ public function setUser(\Muzich\CoreBundle\Entity\User $user) { $this->user = $user; } /** * Get user * * @return Muzich\CoreBundle\Entity\User */ public function getUser() { return $this->user; } /** * Set element * * @param Muzich\CoreBundle\Entity\Element $element */ public function setElement(\Muzich\CoreBundle\Entity\Element $element) { $this->element = $element; } /** * Get element * * @return Muzich\CoreBundle\Entity\Element */ public function getElement() { return $this->element; } /** * Add tags * * @param Muzich\CoreBundle\Entity\Tag $tags */ public function addTag(\Muzich\CoreBundle\Entity\Tag $tags) { $this->tags[] = $tags; } /** * Get tags * * @return Doctrine\Common\Collections\Collection */ public function getTags() { return $this->tags; } }