commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
CartSetLocaleActionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class CartSetLocaleActionBuilder implements Builder
22 {
27  private $locale;
28 
37  public function getLocale()
38  {
39  return $this->locale;
40  }
41 
46  public function withLocale(?string $locale)
47  {
48  $this->locale = $locale;
49 
50  return $this;
51  }
52 
53 
54  public function build(): CartSetLocaleAction
55  {
56  return new CartSetLocaleActionModel(
57  $this->locale
58  );
59  }
60 
61  public static function of(): CartSetLocaleActionBuilder
62  {
63  return new self();
64  }
65 }