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