id = $id; return $this; } /** * Get the value of id. * * @return integer */ public function getId() { return $this->id; } /** * Set ProyectoDetalle entity (many to one). * * @param \UBV\SurUbvBundle\Entity\ProyectoDetalle $proyectoDetalle * @return \UBV\SurUbvBundle\Entity\ProyectoEjeFormacion */ public function setProyectoDetalle(ProyectoDetalle $proyectoDetalle = null) { $this->proyectoDetalle = $proyectoDetalle; return $this; } /** * Get ProyectoDetalle entity (many to one). * * @return \UBV\SurUbvBundle\Entity\ProyectoDetalle */ public function getProyectoDetalle() { return $this->proyectoDetalle; } /** * Set EjeFormacion entity (many to one). * * @param \UBV\SurUbvBundle\Entity\EjeFormacion $ejeFormacion * @return \UBV\SurUbvBundle\Entity\ProyectoEjeFormacion */ public function setEjeFormacion(EjeFormacion $ejeFormacion = null) { $this->ejeFormacion = $ejeFormacion; return $this; } /** * Get EjeFormacion entity (many to one). * * @return \UBV\SurUbvBundle\Entity\EjeFormacion */ public function getEjeFormacion() { return $this->ejeFormacion; } public function __sleep() { return array('id', 'proyecto_detalle_id', 'eje_formacion_id'); } }