| 1 | <?php |
||
| 15 | class Option implements \JsonSerializable |
||
| 16 | { |
||
| 17 | private const LABEL = 'label'; |
||
| 18 | |||
| 19 | private const VALUE = 'value'; |
||
| 20 | |||
| 21 | /** @var string */ |
||
| 22 | private $label; |
||
| 23 | |||
| 24 | /** @var int */ |
||
| 25 | private $value; |
||
| 26 | |||
| 27 | public function __construct(string $label, int $value) |
||
| 32 | |||
| 33 | public function jsonSerialize() |
||
| 40 | } |
||
| 41 |