-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathStaticFunctionSniff.php
60 lines (52 loc) · 1.36 KB
/
StaticFunctionSniff.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
<?php
/**
* Copyright 2019 Adobe
* All Rights Reserved.
*/
declare(strict_types=1);
namespace Magento2\Sniffs\Functions;
use PHP_CodeSniffer\Sniffs\Sniff;
use PHP_CodeSniffer\Files\File;
/**
* Detects static function definitions.
*/
class StaticFunctionSniff implements Sniff
{
/**
* String representation of warning.
*
* @var string
*/
protected $warningMessage = 'Static method cannot be intercepted and its use is discouraged.';
/**
* Warning violation code.
*
* @var string
*/
protected $warningCode = 'StaticFunction';
/**
* @inheritDoc
*/
public function register()
{
return [T_STATIC];
}
/**
* @inheritDoc
*/
public function process(File $phpcsFile, $stackPtr)
{
$posOfFunction = $phpcsFile->findNext(T_FUNCTION, $stackPtr) + 1;
$tokens = array_slice($phpcsFile->getTokens(), $stackPtr, $posOfFunction - $stackPtr);
$allowedTypes = [T_STATIC => true, T_WHITESPACE => true, T_FUNCTION => true];
foreach ($tokens as $token) {
$code = $token['code'];
if (!array_key_exists($code, $allowedTypes)) {
break;
}
if ($code === T_FUNCTION) {
$phpcsFile->addWarning($this->warningMessage, $posOfFunction, $this->warningCode);
}
}
}
}