point = $point; } /** * @return PublicKey */ public static function create(Point $point): self { return new self($point); } public function getPoint(): Point { return $this->point; } }