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