commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
PriceFunctionBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
21final class PriceFunctionBuilder implements Builder
22{
27 private $currencyCode;
28
33 private $function;
34
41 public function getCurrencyCode()
42 {
43 return $this->currencyCode;
44 }
45
53 public function getFunction()
54 {
55 return $this->function;
56 }
57
62 public function withCurrencyCode(?string $currencyCode)
63 {
64 $this->currencyCode = $currencyCode;
65
66 return $this;
67 }
68
73 public function withFunction(?string $function)
74 {
75 $this->function = $function;
76
77 return $this;
78 }
79
80
81 public function build(): PriceFunction
82 {
83 return new PriceFunctionModel(
84 $this->currencyCode,
85 $this->function
86 );
87 }
88
89 public static function of(): PriceFunctionBuilder
90 {
91 return new self();
92 }
93}