commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
All Classes Namespaces Functions Variables Pages
BestDealBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
21final class BestDealBuilder implements Builder
22{
27 private $chosenDiscountType;
28
35 public function getChosenDiscountType()
36 {
37 return $this->chosenDiscountType;
38 }
39
44 public function withChosenDiscountType(?string $chosenDiscountType)
45 {
46 $this->chosenDiscountType = $chosenDiscountType;
47
48 return $this;
49 }
50
51
52 public function build(): BestDeal
53 {
54 return new BestDealModel(
55 $this->chosenDiscountType
56 );
57 }
58
59 public static function of(): BestDealBuilder
60 {
61 return new self();
62 }
63}
withChosenDiscountType(?string $chosenDiscountType)