Skip to content

Commit 7780df5

Browse files
author
Stanislav Idolov
authored
ENGCOM-3331: Fixed annotations #18946
2 parents 17ac9cf + 35067df commit 7780df5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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/Customer/Model/Address/AbstractAddress.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @method string getFirstname()
2424
* @method string getMiddlename()
2525
* @method string getLastname()
26-
* @method int getCountryId()
26+
* @method string getCountryId()
2727
* @method string getCity()
2828
* @method string getTelephone()
2929
* @method string getCompany()
@@ -425,7 +425,7 @@ public function getRegionId()
425425
}
426426

427427
/**
428-
* @return int
428+
* @return string
429429
*/
430430
public function getCountry()
431431
{

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)