Skip to content

Commit

Permalink
Fix namepsace conflict #490 (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ph0tonic committed Apr 15, 2023
1 parent 8e95530 commit abe81c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Nonstandard/UuidV6.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
use Ramsey\Uuid\Rfc4122\TimeTrait;
use Ramsey\Uuid\Rfc4122\UuidInterface;
use Ramsey\Uuid\Rfc4122\UuidV1;
use Ramsey\Uuid\Uuid;
use Ramsey\Uuid\Uuid as BaseUuid;

/**
* Reordered time, or version 6, UUIDs include timestamp, clock sequence, and
Expand All @@ -36,7 +36,7 @@
*
* @psalm-immutable
*/
class UuidV6 extends Uuid implements UuidInterface
class UuidV6 extends BaseUuid implements UuidInterface
{
use TimeTrait;

Expand Down

0 comments on commit abe81c1

Please sign in to comment.