$this->_name, "Value" => $this->_value ); } /** * @var string */ protected $_name; public function getName() { return $this->_name; } public function setName($value) { $this->_name = $value; } /** * @var boolean */ protected $_value; public function getValue() { return $this->_value; } public function setValue($value) { $this->_value = $value; } }