Skip to content

Commit fc7e024

Browse files
committed
Fix #13278 - revert docblock changes in interface
1 parent f52d0fa commit fc7e024

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

app/code/Magento/SalesRule/Api/Data/RuleInterface.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ public function setName($name);
6161
/**
6262
* Get display label
6363
*
64-
* @return RuleLabelInterface[]|null
64+
* @return \Magento\SalesRule\Api\Data\RuleLabelInterface[]|null
6565
*/
6666
public function getStoreLabels();
6767

6868
/**
6969
* Set display label
7070
*
71-
* @param RuleLabelInterface[]|null $storeLabels
71+
* @param \Magento\SalesRule\Api\Data\RuleLabelInterface[]|null $storeLabels
7272
* @return $this
7373
*/
7474
public function setStoreLabels(array $storeLabels = null);
@@ -182,29 +182,29 @@ public function setIsActive($isActive);
182182
/**
183183
* Get condition for the rule
184184
*
185-
* @return ConditionInterface|null
185+
* @return \Magento\SalesRule\Api\Data\ConditionInterface|null
186186
*/
187187
public function getCondition();
188188

189189
/**
190190
* Set condition for the rule
191191
*
192-
* @param ConditionInterface|null $condition
192+
* @param \Magento\SalesRule\Api\Data\ConditionInterface|null $condition
193193
* @return $this
194194
*/
195195
public function setCondition(ConditionInterface $condition = null);
196196

197197
/**
198198
* Get action condition
199199
*
200-
* @return ConditionInterface|null
200+
* @return \Magento\SalesRule\Api\Data\ConditionInterface|null
201201
*/
202202
public function getActionCondition();
203203

204204
/**
205205
* Set action condition
206206
*
207-
* @param ConditionInterface|null $actionCondition
207+
* @param \Magento\SalesRule\Api\Data\ConditionInterface|null $actionCondition
208208
* @return $this
209209
*/
210210
public function setActionCondition(ConditionInterface $actionCondition = null);
@@ -438,14 +438,14 @@ public function setSimpleFreeShipping($simpleFreeShipping);
438438
/**
439439
* Retrieve existing extension attributes object or create a new one.
440440
*
441-
* @return RuleExtensionInterface|null
441+
* @return \Magento\SalesRule\Api\Data\RuleExtensionInterface|null
442442
*/
443443
public function getExtensionAttributes();
444444

445445
/**
446446
* Set an extension attributes object.
447447
*
448-
* @param RuleExtensionInterface $extensionAttributes
448+
* @param \Magento\SalesRule\Api\Data\RuleExtensionInterface $extensionAttributes
449449
* @return $this
450450
*/
451451
public function setExtensionAttributes(RuleExtensionInterface $extensionAttributes);

0 commit comments

Comments
 (0)