nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Get nombre * * @return string */ public function __toString() { return $this->nombre; } /** * Set tiempo * * @param integer $tiempo * @return Escalafones */ public function setTiempo($tiempo) { $this->tiempo = $tiempo; return $this; } /** * Get tiempo * * @return integer */ public function getTiempo() { return $this->tiempo; } }