Option.php 495 Bytes
<?php

namespace AC\Helper\Select;

class Option {

	/**
	 * @var string
	 */
	private $value;

	/**
	 * @var string
	 */
	private $label;

	/**
	 * @param string $value
	 * @param string $label
	 */
	public function __construct( $value, $label = null ) {
		$this->value = $value;
		$this->label = $label ?: $value;
	}

	/**
	 * @return string
	 */
	public function get_value() {
		return $this->value;
	}

	/**
	 * @return string
	 */
	public function get_label() {
		return $this->label;
	}

}