-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathDiConfigSniff.php
65 lines (59 loc) · 1.84 KB
/
DiConfigSniff.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* Copyright 2021 Adobe
* All Rights Reserved.
*/
declare(strict_types=1);
namespace Magento2\Sniffs\Legacy;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
class DiConfigSniff implements Sniff
{
private const OBSOLETE_NODES = [
'FoundObsoleteParamNode' => [
'pattern' => '<param',
'message' => 'The <param> node is obsolete. Instead, use the <argument name="..." xsi:type="...">'
],
'FoundObsoleteInstanceNode' => [
'pattern' => '<instance',
'message' => 'The <instance> node is obsolete. Instead, use the <argument name="..." xsi:type="object">>'
],
'FoundObsoleteArrayNode' => [
'pattern' => '<array',
'message' => 'The <array> node is obsolete. Instead, use the <argument name="..." xsi:type="array">'
],
'FoundObsoleteItemNode' => [
'pattern' => '<item key=',
'message' => 'The <item key="..."> node is obsolete. Instead, use the <item name="..." xsi:type="...">'
],
'FoundObsoleteValueNode' => [
'pattern' => '<value',
'message' => 'The <value> node is obsolete. Instead, provide the actual value as a text literal'
],
];
/**
* @inheritDoc
*/
public function register(): array
{
return [
T_INLINE_HTML
];
}
/**
* @inheritDoc
*/
public function process(File $phpcsFile, $stackPtr)
{
$lineContent = $phpcsFile->getTokensAsString($stackPtr, 1);
foreach (self::OBSOLETE_NODES as $code => $data) {
if (strpos($lineContent, $data['pattern']) !== false) {
$phpcsFile->addWarning(
$data['message'],
$stackPtr,
$code
);
}
}
}
}