Clean up docblocks, code, and note new deprecations

The following are deprecated:

* `Ramsey\Uuid\Codec\OrderedTimeCodec`
* `Ramsey\Uuid\Codec\TimestampFirstCombCodec`
* `Ramsey\Uuid\Codec\TimestampLastCombCodec`
* `Ramsey\Uuid\Generator\CombGenerator`
This commit is contained in:
Ben Ramsey
2025-05-31 17:20:12 -05:00
parent 7eec9c2202
commit 6bd7221484
101 changed files with 1023 additions and 1582 deletions
+2 -6
View File
@@ -163,9 +163,7 @@ class OrderedTimeCodecTest extends TestCase
]);
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage(
'Expected RFC 4122 version 1 (time-based) UUID'
);
$this->expectExceptionMessage('Expected version 1 (time-based) UUID');
$codec->encodeBinary($uuid);
}
@@ -185,9 +183,7 @@ class OrderedTimeCodecTest extends TestCase
$uuid = $factory->fromString($nonTimeBasedUuid);
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage(
'Expected RFC 4122 version 1 (time-based) UUID'
);
$this->expectExceptionMessage('Expected version 1 (time-based) UUID');
$codec->encodeBinary($uuid);
}