commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
SuggestionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class SuggestionBuilder implements Builder
22 {
27  private $text;
28 
35  public function getText()
36  {
37  return $this->text;
38  }
39 
44  public function withText(?string $text)
45  {
46  $this->text = $text;
47 
48  return $this;
49  }
50 
51 
52  public function build(): Suggestion
53  {
54  return new SuggestionModel(
55  $this->text
56  );
57  }
58 
59  public static function of(): SuggestionBuilder
60  {
61  return new self();
62  }
63 }