version = $version; } public function __toString(): string { return $this->version; } /** * @param mixed $object */ public function equals($object): bool { return $object instanceof self && $object->version === $this->version; } }