@@ -23,17 +23,17 @@ interface FormattedPriceInfoInterface extends \Magento\Framework\Api\ExtensibleD
23
23
* Retrieve html with final price
24
24
*
25
25
* @return string
26
- * @since 101.1.0
26
+ * @since 101.1.0
27
27
*/
28
28
public function getFinalPrice ();
29
29
30
30
/**
31
31
* Set the final price: usually it calculated as minimal price of the product
32
32
* Can be different depends on type of product
33
33
*
34
- * @param string $finalPrice
34
+ * @param string $finalPrice
35
35
* @return void
36
- * @since 101.1.0
36
+ * @since 101.1.0
37
37
*/
38
38
public function setFinalPrice ($ finalPrice );
39
39
@@ -42,16 +42,16 @@ public function setFinalPrice($finalPrice);
42
42
* E.g. for product with custom options is price with the most expensive custom option
43
43
*
44
44
* @return string
45
- * @since 101.1.0
45
+ * @since 101.1.0
46
46
*/
47
47
public function getMaxPrice ();
48
48
49
49
/**
50
50
* Set the max price of the product
51
51
*
52
- * @param string $maxPrice
52
+ * @param string $maxPrice
53
53
* @return void
54
- * @since 101.1.0
54
+ * @since 101.1.0
55
55
*/
56
56
public function setMaxPrice ($ maxPrice );
57
57
@@ -60,7 +60,7 @@ public function setMaxPrice($maxPrice);
60
60
* The minimal price is for example, the lowest price of all variations for complex product
61
61
*
62
62
* @return string
63
- * @since 101.1.0
63
+ * @since 101.1.0
64
64
*/
65
65
public function getMinimalPrice ();
66
66
@@ -69,34 +69,34 @@ public function getMinimalPrice();
69
69
* Max regular price is the same, as maximum price, except of excluding calculating special price and catalog rules
70
70
* in it
71
71
*
72
- * @param string $maxRegularPrice
72
+ * @param string $maxRegularPrice
73
73
* @return void
74
- * @since 101.1.0
74
+ * @since 101.1.0
75
75
*/
76
76
public function setMaxRegularPrice ($ maxRegularPrice );
77
77
78
78
/**
79
79
* Retrieve max regular price
80
80
*
81
81
* @return string
82
- * @since 101.1.0
82
+ * @since 101.1.0
83
83
*/
84
84
public function getMaxRegularPrice ();
85
85
86
86
/**
87
87
* The minimal regular price has the same behavior of calculation as max regular price, but is opposite price
88
88
*
89
- * @param string $minRegularPrice
89
+ * @param string $minRegularPrice
90
90
* @return void
91
- * @since 101.1.0
91
+ * @since 101.1.0
92
92
*/
93
93
public function setMinimalRegularPrice ($ minRegularPrice );
94
94
95
95
/**
96
96
* Retrieve minimal regular price
97
97
*
98
98
* @return string
99
- * @since 101.1.0
99
+ * @since 101.1.0
100
100
*/
101
101
public function getMinimalRegularPrice ();
102
102
@@ -105,26 +105,26 @@ public function getMinimalRegularPrice();
105
105
*
106
106
* Special price - is temporary price, that can be set to specific product
107
107
*
108
- * @param string $specialPrice
108
+ * @param string $specialPrice
109
109
* @return void
110
- * @since 101.1.0
110
+ * @since 101.1.0
111
111
*/
112
112
public function setSpecialPrice ($ specialPrice );
113
113
114
114
/**
115
115
* Retrieve special price
116
116
*
117
117
* @return string
118
- * @since 101.1.0
118
+ * @since 101.1.0
119
119
*/
120
120
public function getSpecialPrice ();
121
121
122
122
/**
123
123
* Set minimal price
124
124
*
125
- * @param string $minimalPrice
125
+ * @param string $minimalPrice
126
126
* @return void
127
- * @since 101.1.0
127
+ * @since 101.1.0
128
128
*/
129
129
public function setMinimalPrice ($ minimalPrice );
130
130
@@ -133,35 +133,35 @@ public function setMinimalPrice($minimalPrice);
133
133
* Usually this price is corresponding to price in admin panel of product
134
134
*
135
135
* @return string
136
- * @since 101.1.0
136
+ * @since 101.1.0
137
137
*/
138
138
public function getRegularPrice ();
139
139
140
140
/**
141
141
* Set regular price
142
142
*
143
- * @param string $regularPrice
143
+ * @param string $regularPrice
144
144
* @return void
145
- * @since 101.1.0
145
+ * @since 101.1.0
146
146
*/
147
147
public function setRegularPrice ($ regularPrice );
148
148
149
149
/**
150
150
* Retrieve existing extension attributes object or create a new one.
151
151
*
152
152
* @return \Magento\Catalog\Api\Data\ProductRender\FormattedPriceInfoExtensionInterface|null
153
- * @since 101.1.0
153
+ * @since 101.1.0
154
154
*/
155
155
public function getExtensionAttributes ();
156
156
157
157
/**
158
158
* Set an extension attributes object.
159
159
*
160
- * @param \Magento\Catalog\Api\Data\ProductRender\FormattedPriceInfoExtensionInterface $extensionAttributes
160
+ * @param \Magento\Catalog\Api\Data\ProductRender\FormattedPriceInfoExtensionInterface $extensionAttributes
161
161
* @return $this
162
- * @since 101.1.0
162
+ * @since 101.1.0
163
163
*/
164
164
public function setExtensionAttributes (
165
165
\Magento \Catalog \Api \Data \ProductRender \FormattedPriceInfoExtensionInterface $ extensionAttributes
166
166
);
167
- }
167
+ }
0 commit comments