Skip to content

Commit fbca4dd

Browse files
committed
Fixed annotations
- Magento\Catalog\Model\ResourceModel\Product\Collection::addAttributeToFilter() - Magento\Quote\Model\QuoteAddress::setCollectShippingRates()
1 parent 77af5d6 commit fbca4dd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/code/Magento/Catalog/Model/ResourceModel/Product/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1534,7 +1534,7 @@ public function addPriceData($customerGroupId = null, $websiteId = null)
15341534
/**
15351535
* Add attribute to filter
15361536
*
1537-
* @param \Magento\Eav\Model\Entity\Attribute\AbstractAttribute|string $attribute
1537+
* @param \Magento\Eav\Model\Entity\Attribute\AbstractAttribute|string|array $attribute
15381538
* @param array $condition
15391539
* @param string $joinType
15401540
* @return $this

app/code/Magento/Quote/Model/Quote/Address.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
* @method Address setAddressType(string $value)
2929
* @method int getFreeShipping()
3030
* @method Address setFreeShipping(int $value)
31-
* @method int getCollectShippingRates()
32-
* @method Address setCollectShippingRates(int $value)
31+
* @method bool getCollectShippingRates()
32+
* @method Address setCollectShippingRates(bool $value)
3333
* @method Address setShippingMethod(string $value)
3434
* @method string getShippingDescription()
3535
* @method Address setShippingDescription(string $value)

0 commit comments

Comments
 (0)