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