Skip to content

Commit 9f0f967

Browse files
committed
Fixes after code review
1 parent 59b324a commit 9f0f967

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public function isUsingPriceIndex()
159159
}
160160

161161
/**
162-
* Sets 'Use Price' index flaf.
162+
* Sets 'Use Price' index flag.
163163
*
164164
* @param bool $value
165165
* @return void

app/code/Magento/Ui/DataProvider/AbstractDataProvider.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ public function getFieldMetaInfo($fieldSetName, $fieldName)
162162

163163
/**
164164
* @inheritdoc
165-
* @phpcsSuppress SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingParameterTypeHint
166165
* @phpcsSuppress SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingReturnTypeHint
167166
*/
168167
public function addFilter(\Magento\Framework\Api\Filter $filter)

app/code/Magento/Ui/Model/Export/SearchResultIterator.php

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ public function __construct(
2222
}
2323

2424
/**
25-
* @inheritDoc
26-
*
27-
* @return array|mixed
25+
* @inheritdoc
2826
*/
2927
#[\ReturnTypeWillChange]
3028
public function current()
@@ -33,9 +31,7 @@ public function current()
3331
}
3432

3533
/**
36-
* @inheritDoc
37-
*
38-
* @return int|mixed
34+
* @inheritdoc
3935
*/
4036
#[\ReturnTypeWillChange]
4137
public function key()
@@ -44,7 +40,7 @@ public function key()
4440
}
4541

4642
/**
47-
* @inheritDoc
43+
* @inheritdoc
4844
*/
4945
#[\ReturnTypeWillChange]
5046
public function next()
@@ -53,7 +49,7 @@ public function next()
5349
}
5450

5551
/**
56-
* @inheritDoc
52+
* @inheritdoc
5753
*/
5854
#[\ReturnTypeWillChange]
5955
public function rewind()
@@ -62,7 +58,7 @@ public function rewind()
6258
}
6359

6460
/**
65-
* @inheritDoc
61+
* @inheritdoc
6662
*/
6763
#[\ReturnTypeWillChange]
6864
public function valid()

0 commit comments

Comments
 (0)