| 1 | <?php |
||
| 10 | class JsonBinaryDecoderValue |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | private $isResolved; |
||
| 16 | /** |
||
| 17 | * @var mixed |
||
| 18 | */ |
||
| 19 | private $value; |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $type; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * JsonBinaryDecoderValue constructor. |
||
| 27 | * @param bool $isResolved |
||
| 28 | * @param mixed $value |
||
| 29 | * @param string $type |
||
| 30 | */ |
||
| 31 | public function __construct($isResolved, $value, $type) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return mixed |
||
| 40 | */ |
||
| 41 | public function getValue() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return boolean |
||
| 48 | */ |
||
| 49 | public function isIsResolved() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return string |
||
| 56 | */ |
||
| 57 | public function getType() |
||
| 61 | } |