value = $value; } /** * Get the value. * * Example: * ``` * $value = $int64->get(); * ``` * * @return string */ public function get() { return $this->value; } /** * Provides a convenient way to access the value. * * @access private */ public function __toString() { return $this->value; } /** * Implement JsonSerializable by returning the 64 bit integer as a string * * @return string * @access private */ #[\ReturnTypeWillChange] public function jsonSerialize() { return $this->value; } }