id; } /** * Set label * * @param string $label * @return Country */ public function setLabel($label) { $this->label = $label; return $this; } /** * Get label * * @return string */ public function getLabel() { return $this->label; } public function __toString() { return $this->getLabel(); } }