Skip to content

Commit ce2247b

Browse files
committed
fix wrong type of argument
1 parent ba8fae3 commit ce2247b

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/Review/Model/ResourceModel/Review

1 file changed

+2
-2
lines changed

app/code/Magento/Review/Model/ResourceModel/Review/Summary.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ public function reAggregate($summary)
7979
* Append review summary fields to product collection
8080
*
8181
* @param \Magento\Catalog\Model\ResourceModel\Product\Collection $productCollection
82-
* @param string $storeId
82+
* @param int $storeId
8383
* @param string $entityCode
8484
* @return Summary
8585
* @throws \Magento\Framework\Exception\LocalizedException
8686
*/
8787
public function appendSummaryFieldsToCollection(
8888
\Magento\Catalog\Model\ResourceModel\Product\Collection $productCollection,
89-
string $storeId,
89+
int $storeId,
9090
string $entityCode
9191
) {
9292
if (!$productCollection->isLoaded()) {

0 commit comments

Comments
 (0)