commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
DateTimeAttributeBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use DateTimeImmutable;
17use stdClass;
18
22final class DateTimeAttributeBuilder implements Builder
23{
28 private $name;
29
34 private $value;
35
44 public function getName()
45 {
46 return $this->name;
47 }
48
53 public function getValue()
54 {
55 return $this->value;
56 }
57
62 public function withName(?string $name)
63 {
64 $this->name = $name;
65
66 return $this;
67 }
68
73 public function withValue(?DateTimeImmutable $value)
74 {
75 $this->value = $value;
76
77 return $this;
78 }
79
80
81 public function build(): DateTimeAttribute
82 {
83 return new DateTimeAttributeModel(
84 $this->name,
85 $this->value
86 );
87 }
88
89 public static function of(): DateTimeAttributeBuilder
90 {
91 return new self();
92 }
93}