-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathObsoleteConnectionSniff.php
76 lines (66 loc) · 1.73 KB
/
ObsoleteConnectionSniff.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
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento2\Sniffs\Legacy;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
class ObsoleteConnectionSniff implements Sniff
{
/**
* @var string[]
*/
private $obsoleteMethods = [
'_getReadConnection',
'_getWriteConnection',
'_getReadAdapter',
'_getWriteAdapter',
'getReadConnection',
'getWriteConnection',
'getReadAdapter',
'getWriteAdapter',
];
private const OBSOLETE_METHOD_ERROR_CODE = 'ObsoleteMethodFound';
/**
* @inheritdoc
*/
public function register()
{
return [
T_OBJECT_OPERATOR,
T_FUNCTION
];
}
/**
* @inheritdoc
*/
public function process(File $phpcsFile, $stackPtr)
{
$this->validateObsoleteMethod($phpcsFile, $stackPtr);
}
/**
* Check if obsolete methods are used
*
* @param File $phpcsFile
* @param int $stackPtr
*/
private function validateObsoleteMethod(File $phpcsFile, int $stackPtr)
{
$tokens = $phpcsFile->getTokens();
$stringPos = $phpcsFile->findNext(T_STRING, $stackPtr + 1);
foreach ($this->obsoleteMethods as $method) {
if ($tokens[$stringPos]['content'] === $method) {
$phpcsFile->addWarning(
"Contains obsolete method: %s. Please use getConnection method instead.",
$stackPtr,
self::OBSOLETE_METHOD_ERROR_CODE,
[
$method,
]
);
}
}
}
}