Skip to content

Commit

Permalink
Merge branch '5.2' into 5.x
Browse files Browse the repository at this point in the history
* 5.2:
  [UID] refer to AbstractUid instead of "parent"
  • Loading branch information
derrabus committed Mar 22, 2021
2 parents b1c385f + 47d4347 commit b2f324a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Uuid.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function toRfc4122(): string
return $this->uid;
}

public function compare(parent $other): int
public function compare(AbstractUid $other): int
{
if (false !== $cmp = uuid_compare($this->uid, $other->uid)) {
return $cmp;
Expand Down

0 comments on commit b2f324a

Please sign in to comment.