Skip to content

Commit de1425d

Browse files
committed
Fixed static tests
1 parent d40c65c commit de1425d

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,9 @@ public function updateLowStockDate(int $websiteId)
264264
}
265265

266266
/**
267-
* @param string $tableAlias
267+
* Get Manage Stock Expression
268268
*
269+
* @param string $tableAlias
269270
* @return \Zend_Db_Expr
270271
*/
271272
public function getManageStockExpr(string $tableAlias = ''): \Zend_Db_Expr
@@ -283,8 +284,9 @@ public function getManageStockExpr(string $tableAlias = ''): \Zend_Db_Expr
283284
}
284285

285286
/**
286-
* @param string $tableAlias
287+
* Get Backorders Expression
287288
*
289+
* @param string $tableAlias
288290
* @return \Zend_Db_Expr
289291
*/
290292
public function getBackordersExpr(string $tableAlias = ''): \Zend_Db_Expr
@@ -302,8 +304,9 @@ public function getBackordersExpr(string $tableAlias = ''): \Zend_Db_Expr
302304
}
303305

304306
/**
305-
* @param string $tableAlias
307+
* Get Minimum Sale Quantity Expression
306308
*
309+
* @param string $tableAlias
307310
* @return \Zend_Db_Expr
308311
*/
309312
public function getMinSaleQtyExpr(string $tableAlias = ''): \Zend_Db_Expr

app/code/Magento/Customer/Model/Indexer/CustomerGroupDimensionProvider.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
use Magento\Framework\Indexer\DimensionFactory;
1212
use Magento\Framework\Indexer\DimensionProviderInterface;
1313

14+
/**
15+
* Class CustomerGroupDimensionProvider
16+
*/
1417
class CustomerGroupDimensionProvider implements DimensionProviderInterface
1518
{
1619
/**
@@ -55,6 +58,8 @@ public function getIterator(): \Traversable
5558
}
5659

5760
/**
61+
* Get Customer Groups
62+
*
5863
* @return array
5964
*/
6065
private function getCustomerGroups(): array

0 commit comments

Comments
 (0)