Overrides UuidInterface::compareTo
public function compareTo(UuidInterface $other) : int { $compare = strcmp($this->toString(), $other->toString()); if ($compare < 0) { return -1; } if ($compare > 0) { return 1; } return 0; }