commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
HitBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
21final class HitBuilder implements Builder
22{
27 private $id;
28
33 private $version;
34
39 private $relevance;
40
47 public function getId()
48 {
49 return $this->id;
50 }
51
58 public function getVersion()
59 {
60 return $this->version;
61 }
62
69 public function getRelevance()
70 {
71 return $this->relevance;
72 }
73
78 public function withId(?string $id)
79 {
80 $this->id = $id;
81
82 return $this;
83 }
84
89 public function withVersion(?int $version)
90 {
91 $this->version = $version;
92
93 return $this;
94 }
95
100 public function withRelevance(?float $relevance)
101 {
102 $this->relevance = $relevance;
103
104 return $this;
105 }
106
107
108 public function build(): Hit
109 {
110 return new HitModel(
111 $this->id,
112 $this->version,
113 $this->relevance
114 );
115 }
116
117 public static function of(): HitBuilder
118 {
119 return new self();
120 }
121}