Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | final class ChannelPricingPropertyBuilder extends AbstractPropertyBuilder |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $priceProperty; |
||
25 | |||
26 | /** |
||
27 | * @param string $priceProperty |
||
28 | */ |
||
29 | public function __construct(string $priceProperty) |
||
30 | { |
||
31 | $this->priceProperty = $priceProperty; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function buildProperty(TransformEvent $event): void |
||
53 | } |
||
54 | } |
||
57 |