function LazyUuidFromString::getMostSignificantBitsHex
@psalm-suppress DeprecatedMethod
Overrides DeprecatedUuidInterface::getMostSignificantBitsHex
File
-
vendor/
ramsey/ uuid/ src/ Lazy/ LazyUuidFromString.php, line 184
Class
- LazyUuidFromString
- Lazy version of a UUID: its format has not been determined yet, so it is mostly only usable for string/bytes conversion. This object optimizes instantiation, serialization and string conversion time, at the cost of increased overhead for more advanced…
Namespace
Ramsey\Uuid\LazyCode
public function getMostSignificantBitsHex() : string {
return ($this->unwrapped ?? $this->unwrap())
->getMostSignificantBitsHex();
}