Remove deprecated getClockSequenceHex() method

This commit is contained in:
Ben Ramsey
2022-03-27 18:44:47 -05:00
parent ddb4ce0aca
commit f810c0a50c
7 changed files with 12 additions and 32 deletions
-10
View File
@@ -87,16 +87,6 @@ trait DeprecatedUuidMethodsTrait
return $this->numberConverter->fromHex($this->fields->getClockSeq()->toString());
}
/**
* @deprecated Use {@see UuidInterface::getFields()} to get a
* {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface}
* instance, you may call {@see Rfc4122FieldsInterface::getClockSeq()}.
*/
public function getClockSequenceHex(): string
{
return $this->fields->getClockSeq()->toString();
}
/**
* @deprecated This method will be removed in 5.0.0. There is no alternative
* recommendation, so plan accordingly.