Skip to content

Commit b92c9aa

Browse files
pawankparmarpawankparmar
pawankparmar
authored and
pawankparmar
committed
Remove extra spaces
1 parent 1d63932 commit b92c9aa

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

app/code/Magento/Catalog/Api/Data/ProductRender/FormattedPriceInfoInterface.php

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ interface FormattedPriceInfoInterface extends \Magento\Framework\Api\ExtensibleD
2323
* Retrieve html with final price
2424
*
2525
* @return string
26-
* @since 101.1.0
26+
* @since 101.1.0
2727
*/
2828
public function getFinalPrice();
2929

3030
/**
3131
* Set the final price: usually it calculated as minimal price of the product
3232
* Can be different depends on type of product
3333
*
34-
* @param string $finalPrice
34+
* @param string $finalPrice
3535
* @return void
36-
* @since 101.1.0
36+
* @since 101.1.0
3737
*/
3838
public function setFinalPrice($finalPrice);
3939

@@ -42,16 +42,16 @@ public function setFinalPrice($finalPrice);
4242
* E.g. for product with custom options is price with the most expensive custom option
4343
*
4444
* @return string
45-
* @since 101.1.0
45+
* @since 101.1.0
4646
*/
4747
public function getMaxPrice();
4848

4949
/**
5050
* Set the max price of the product
5151
*
52-
* @param string $maxPrice
52+
* @param string $maxPrice
5353
* @return void
54-
* @since 101.1.0
54+
* @since 101.1.0
5555
*/
5656
public function setMaxPrice($maxPrice);
5757

@@ -60,7 +60,7 @@ public function setMaxPrice($maxPrice);
6060
* The minimal price is for example, the lowest price of all variations for complex product
6161
*
6262
* @return string
63-
* @since 101.1.0
63+
* @since 101.1.0
6464
*/
6565
public function getMinimalPrice();
6666

@@ -69,34 +69,34 @@ public function getMinimalPrice();
6969
* Max regular price is the same, as maximum price, except of excluding calculating special price and catalog rules
7070
* in it
7171
*
72-
* @param string $maxRegularPrice
72+
* @param string $maxRegularPrice
7373
* @return void
74-
* @since 101.1.0
74+
* @since 101.1.0
7575
*/
7676
public function setMaxRegularPrice($maxRegularPrice);
7777

7878
/**
7979
* Retrieve max regular price
8080
*
8181
* @return string
82-
* @since 101.1.0
82+
* @since 101.1.0
8383
*/
8484
public function getMaxRegularPrice();
8585

8686
/**
8787
* The minimal regular price has the same behavior of calculation as max regular price, but is opposite price
8888
*
89-
* @param string $minRegularPrice
89+
* @param string $minRegularPrice
9090
* @return void
91-
* @since 101.1.0
91+
* @since 101.1.0
9292
*/
9393
public function setMinimalRegularPrice($minRegularPrice);
9494

9595
/**
9696
* Retrieve minimal regular price
9797
*
9898
* @return string
99-
* @since 101.1.0
99+
* @since 101.1.0
100100
*/
101101
public function getMinimalRegularPrice();
102102

@@ -105,26 +105,26 @@ public function getMinimalRegularPrice();
105105
*
106106
* Special price - is temporary price, that can be set to specific product
107107
*
108-
* @param string $specialPrice
108+
* @param string $specialPrice
109109
* @return void
110-
* @since 101.1.0
110+
* @since 101.1.0
111111
*/
112112
public function setSpecialPrice($specialPrice);
113113

114114
/**
115115
* Retrieve special price
116116
*
117117
* @return string
118-
* @since 101.1.0
118+
* @since 101.1.0
119119
*/
120120
public function getSpecialPrice();
121121

122122
/**
123123
* Set minimal price
124124
*
125-
* @param string $minimalPrice
125+
* @param string $minimalPrice
126126
* @return void
127-
* @since 101.1.0
127+
* @since 101.1.0
128128
*/
129129
public function setMinimalPrice($minimalPrice);
130130

@@ -133,35 +133,35 @@ public function setMinimalPrice($minimalPrice);
133133
* Usually this price is corresponding to price in admin panel of product
134134
*
135135
* @return string
136-
* @since 101.1.0
136+
* @since 101.1.0
137137
*/
138138
public function getRegularPrice();
139139

140140
/**
141141
* Set regular price
142142
*
143-
* @param string $regularPrice
143+
* @param string $regularPrice
144144
* @return void
145-
* @since 101.1.0
145+
* @since 101.1.0
146146
*/
147147
public function setRegularPrice($regularPrice);
148148

149149
/**
150150
* Retrieve existing extension attributes object or create a new one.
151151
*
152152
* @return \Magento\Catalog\Api\Data\ProductRender\FormattedPriceInfoExtensionInterface|null
153-
* @since 101.1.0
153+
* @since 101.1.0
154154
*/
155155
public function getExtensionAttributes();
156156

157157
/**
158158
* Set an extension attributes object.
159159
*
160-
* @param \Magento\Catalog\Api\Data\ProductRender\FormattedPriceInfoExtensionInterface $extensionAttributes
160+
* @param \Magento\Catalog\Api\Data\ProductRender\FormattedPriceInfoExtensionInterface $extensionAttributes
161161
* @return $this
162-
* @since 101.1.0
162+
* @since 101.1.0
163163
*/
164164
public function setExtensionAttributes(
165165
\Magento\Catalog\Api\Data\ProductRender\FormattedPriceInfoExtensionInterface $extensionAttributes
166166
);
167-
}
167+
}

0 commit comments

Comments
 (0)