commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
CustomerUpdateActionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class CustomerUpdateActionBuilder implements Builder
22 {
23  public function build(): CustomerUpdateAction
24  {
25  return new CustomerUpdateActionModel(
26  );
27  }
28 
29  public static function of(): CustomerUpdateActionBuilder
30  {
31  return new self();
32  }
33 }