commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
SearchFullTextExpressionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
22 {
27  private $fullText;
28 
33  public function getFullText()
34  {
35  return $this->fullText instanceof SearchFullTextValueBuilder ? $this->fullText->build() : $this->fullText;
36  }
37 
42  public function withFullText(?SearchFullTextValue $fullText)
43  {
44  $this->fullText = $fullText;
45 
46  return $this;
47  }
48 
53  public function withFullTextBuilder(?SearchFullTextValueBuilder $fullText)
54  {
55  $this->fullText = $fullText;
56 
57  return $this;
58  }
59 
60  public function build(): SearchFullTextExpression
61  {
63  $this->fullText instanceof SearchFullTextValueBuilder ? $this->fullText->build() : $this->fullText
64  );
65  }
66 
67  public static function of(): SearchFullTextExpressionBuilder
68  {
69  return new self();
70  }
71 }