Overrides UuidInterface::equals
public function equals(?object $other) : bool { if (!$other instanceof UuidInterface) { return false; } return $this->compareTo($other) === 0; }