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