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