Skip to content

Commit be1d79a

Browse files
revert return types
1 parent 379027f commit be1d79a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Review/Ui/DataProvider/Product/ReviewDataProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private function getPreparedField(string $name): string
102102
/**
103103
* @inheritDoc
104104
*/
105-
public function addOrder($field, $direction): void
105+
public function addOrder($field, $direction)
106106
{
107107
$this->getCollection()->setOrder($this->getPreparedField($field), $direction);
108108
}
@@ -112,7 +112,7 @@ public function addOrder($field, $direction): void
112112
* @since 100.1.0
113113
* @return void
114114
*/
115-
public function addFilter(Filter $filter): void
115+
public function addFilter(Filter $filter)
116116
{
117117
$field = $filter->getField();
118118
$filter->setField($this->getPreparedField($field));

0 commit comments

Comments
 (0)