. */ namespace Balping\JsonRaw; class Raw implements \JsonSerializable { /** * Unique identifier. Gets replaced with raw value * after using built-in json_encode * @var string */ protected $id; /** * Raw value. This is passed to json without any modification * (i.e. without escaping, etc.) * @var string */ protected $value; public function __construct(string $value){ $this->value = $value; $this->id = bin2hex(random_bytes(20)); } public function getId(){ return $this->id; } public function getValue(){ return $this->value; } public function jsonSerialize() : string { return $this->getId(); } }