assertInitialValues(initialValues: $values); $this->map->putAll(values: $values); } public function offsetSet(mixed $offset, mixed $value): void { throw new ImmutableMapException(message: sprintf('Cannot change values in %s', __CLASS__)); } public function offsetUnset(mixed $offset): void { throw new ImmutableMapException(message: sprintf('Cannot unset values in %s', __CLASS__)); } public static function create(KeyType $keyType, ValueType $valueType, array $values): static { return new static(keyType: $keyType, valueType: $valueType, values: $values); } }