Skip to content

Commit 524f108

Browse files
committed
Fix > PHP Code Sniffer violation : If the @inheritdoc not inline it shouldn’t have braces
1 parent 743bfa0 commit 524f108

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

app/code/Magento/Backend/Console/Command/AbstractCacheManageCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ abstract class AbstractCacheManageCommand extends AbstractCacheCommand
2424
const INPUT_KEY_TYPES = 'types';
2525

2626
/**
27-
* {@inheritdoc}
27+
* @inheritdoc
2828
*/
2929
protected function configure()
3030
{

app/code/Magento/Backend/Console/Command/AbstractCacheSetCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ abstract class AbstractCacheSetCommand extends AbstractCacheManageCommand
2626
abstract protected function isEnable();
2727

2828
/**
29-
* {@inheritdoc}
29+
* @inheritdoc
3030
*/
3131
protected function execute(InputInterface $input, OutputInterface $output)
3232
{

app/code/Magento/Catalog/Ui/Component/Listing/Attribute/AbstractRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(
3737
}
3838

3939
/**
40-
* {@inheritdoc}
40+
* @inheritdoc
4141
*/
4242
abstract protected function buildSearchCriteria();
4343

app/code/Magento/Catalog/Ui/DataProvider/Product/Related/AbstractDataProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function __construct(
114114
abstract protected function getLinkType();
115115

116116
/**
117-
* {@inheritdoc}
117+
* @inheritdoc
118118
* @since 101.0.0
119119
*/
120120
public function getCollection()

app/code/Magento/Checkout/CustomerData/AbstractItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ abstract class AbstractItem implements ItemInterface
2222
protected $item;
2323

2424
/**
25-
* {@inheritdoc}
25+
* @inheritdoc
2626
*/
2727
public function getItemData(Item $item)
2828
{

app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/AbstractOptions.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ protected function _prepareLayout()
2828
}
2929

3030
/**
31-
* {@inheritdoc}
31+
* @inheritdoc
32+
*
3233
* @return string
3334
*/
3435
protected function _toHtml()

app/code/Magento/Ui/Component/AbstractComponent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public function prepareDataSource(array $dataSource)
281281
}
282282

283283
/**
284-
* {@inheritdoc}
284+
* @inheritdoc
285285
*/
286286
public function getDataSourceData()
287287
{

app/code/Magento/Ui/Component/Filters/Type/AbstractFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function getComponentName()
8686
}
8787

8888
/**
89-
* {@inheritdoc}
89+
* @inheritdoc
9090
*/
9191
public function prepare()
9292
{

0 commit comments

Comments
 (0)