Skip to content

Commit 26a07ef

Browse files
committed
Missing PHPDoc comment for method
1 parent 619f2db commit 26a07ef

File tree

9 files changed

+44
-0
lines changed

9 files changed

+44
-0
lines changed

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,11 @@ public function updateLowStockDate(int $websiteId)
263263
$connection->update($this->getMainTable(), $value, $where);
264264
}
265265

266+
/**
267+
* @param string $tableAlias
268+
*
269+
* @return \Zend_Db_Expr
270+
*/
266271
public function getManageStockExpr(string $tableAlias = ''): \Zend_Db_Expr
267272
{
268273
if ($tableAlias) {
@@ -277,6 +282,11 @@ public function getManageStockExpr(string $tableAlias = ''): \Zend_Db_Expr
277282
return $manageStock;
278283
}
279284

285+
/**
286+
* @param string $tableAlias
287+
*
288+
* @return \Zend_Db_Expr
289+
*/
280290
public function getBackordersExpr(string $tableAlias = ''): \Zend_Db_Expr
281291
{
282292
if ($tableAlias) {
@@ -291,6 +301,11 @@ public function getBackordersExpr(string $tableAlias = ''): \Zend_Db_Expr
291301
return $itemBackorders;
292302
}
293303

304+
/**
305+
* @param string $tableAlias
306+
*
307+
* @return \Zend_Db_Expr
308+
*/
294309
public function getMinSaleQtyExpr(string $tableAlias = ''): \Zend_Db_Expr
295310
{
296311
if ($tableAlias) {

app/code/Magento/CatalogSearch/Setup/Patch/Data/MySQLSearchDeprecationNotification.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ class MySQLSearchDeprecationNotification implements \Magento\Framework\Setup\Pat
2525
*/
2626
private $notifier;
2727

28+
/**
29+
* @param \Magento\Framework\Search\EngineResolverInterface $searchEngineResolver
30+
* @param \Magento\Framework\Notification\NotifierInterface $notifier
31+
*/
2832
public function __construct(
2933
\Magento\Framework\Search\EngineResolverInterface $searchEngineResolver,
3034
\Magento\Framework\Notification\NotifierInterface $notifier

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,19 @@ class CustomerGroupDimensionProvider implements DimensionProviderInterface
3434
*/
3535
private $dimensionFactory;
3636

37+
/**
38+
* @param CustomerGroupCollectionFactory $collectionFactory
39+
* @param DimensionFactory $dimensionFactory
40+
*/
3741
public function __construct(CustomerGroupCollectionFactory $collectionFactory, DimensionFactory $dimensionFactory)
3842
{
3943
$this->dimensionFactory = $dimensionFactory;
4044
$this->collectionFactory = $collectionFactory;
4145
}
4246

47+
/**
48+
* @inheritdoc
49+
*/
4350
public function getIterator(): \Traversable
4451
{
4552
foreach ($this->getCustomerGroups() as $customerGroup) {

app/code/Magento/Ui/Test/Unit/Component/Form/Element/ActionDeleteTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ protected function getModelName()
2020
return ActionDelete::class;
2121
}
2222

23+
/**
24+
* {@inheritdoc}
25+
*/
2326
public function testGetComponentName()
2427
{
2528
$this->assertSame(ActionDelete::NAME, $this->getModel()->getComponentName());

app/code/Magento/Ui/Test/Unit/Component/Form/Element/CheckboxSetTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ protected function getModelName()
2222
return CheckboxSet::class;
2323
}
2424

25+
/**
26+
* {@inheritdoc}
27+
*/
2528
public function testGetComponentName()
2629
{
2730
$this->assertSame(CheckboxSet::NAME, $this->getModel()->getComponentName());

app/code/Magento/Ui/Test/Unit/Component/Form/Element/MultiSelectTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ protected function getModelName()
2222
return MultiSelect::class;
2323
}
2424

25+
/**
26+
* {@inheritdoc}
27+
*/
2528
public function testGetComponentName()
2629
{
2730
$this->contextMock->expects($this->never())->method('getProcessor');

app/code/Magento/Ui/Test/Unit/Component/Form/Element/RadioSetTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ protected function getModelName()
2222
return RadioSet::class;
2323
}
2424

25+
/**
26+
* {@inheritdoc}
27+
*/
2528
public function testGetComponentName()
2629
{
2730
$this->assertSame(RadioSet::NAME, $this->getModel()->getComponentName());

app/code/Magento/Ui/Test/Unit/Component/Form/Element/SelectTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ protected function getModelName()
2222
return Select::class;
2323
}
2424

25+
/**
26+
* {@inheritdoc}
27+
*/
2528
public function testGetComponentName()
2629
{
2730
$this->assertSame(Select::NAME, $this->getModel()->getComponentName());

app/code/Magento/Ui/Test/Unit/Component/Form/Element/WysiwygTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ protected function getModelName()
9292
return Wysiwyg::class;
9393
}
9494

95+
/**
96+
* {@inheritdoc}
97+
*/
9598
public function testGetComponentName()
9699
{
97100
$this->assertSame(Wysiwyg::NAME, $this->getModel()->getComponentName());

0 commit comments

Comments
 (0)