commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
AssetDimensionsBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class AssetDimensionsBuilder implements Builder
22 {
27  private $w;
28 
33  private $h;
34 
41  public function getW()
42  {
43  return $this->w;
44  }
45 
52  public function getH()
53  {
54  return $this->h;
55  }
56 
61  public function withW(?int $w)
62  {
63  $this->w = $w;
64 
65  return $this;
66  }
67 
72  public function withH(?int $h)
73  {
74  $this->h = $h;
75 
76  return $this;
77  }
78 
79 
80  public function build(): AssetDimensions
81  {
82  return new AssetDimensionsModel(
83  $this->w,
84  $this->h
85  );
86  }
87 
88  public static function of(): AssetDimensionsBuilder
89  {
90  return new self();
91  }
92 }