Skip to content

Commit b8acb6c

Browse files
committed
Add docblock to appease coding standard
Note that these are useless, as it's the default behaviour to inherit from the parent docblock.
1 parent 7b6bd74 commit b8acb6c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Magento2/Sniffs/Legacy/EscapeMethodsOnBlockClassSniff.php

+6
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,19 @@ class EscapeMethodsOnBlockClassSniff implements Sniff
2626
'escapeXssInUrl' => true,
2727
];
2828

29+
/**
30+
* @inheritDoc
31+
*/
2932
public function register()
3033
{
3134
return [
3235
T_OBJECT_OPERATOR,
3336
];
3437
}
3538

39+
/**
40+
* @inheritDoc
41+
*/
3642
public function process(File $phpcsFile, $stackPtr)
3743
{
3844
$tokens = $phpcsFile->getTokens();

0 commit comments

Comments
 (0)