nombre = $nombre; return $this; } /** * Get nombre * * @return string */ public function getNombre() { return $this->nombre; } /** * Set capital * * @param string $capital * @return Estado */ public function setCapital($capital) { $this->capital = $capital; return $this; } /** * Get capital * * @return string */ public function getCapital() { return $this->capital; } /** * Set codigo * * @param string $codigo * @return Estado */ public function setCodigo($codigo) { $this->codigo = $codigo; return $this; } /** * Get codigo * * @return string */ public function getCodigo() { return $this->codigo; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Get nombre * * @return string */ public function __toString() { return $this->nombre; } }