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