commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ApproverConjunctionBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
21final class ApproverConjunctionBuilder implements Builder
22{
27 private $and;
28
35 public function getAnd()
36 {
37 return $this->and;
38 }
39
45 {
46 $this->and = $and;
47
48 return $this;
49 }
50
51
52 public function build(): ApproverConjunction
53 {
54 return new ApproverConjunctionModel(
55 $this->and
56 );
57 }
58
59 public static function of(): ApproverConjunctionBuilder
60 {
61 return new self();
62 }
63}