-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathRegexpCompareSniff.php
More file actions
54 lines (49 loc) · 1.32 KB
/
RegexpCompareSniff.php
File metadata and controls
54 lines (49 loc) · 1.32 KB
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
<?php
/**
* WordPressVIPMinimum Coding Standard.
*
* @package VIPCS\WordPressVIPMinimum
* @link https://github.com/Automattic/VIP-Coding-Standards
* @license https://opensource.org/license/gpl-2-0 GPL-2.0
*/
namespace WordPressVIPMinimum\Sniffs\Performance;
use PHPCSUtils\Utils\TextStrings;
use WordPressCS\WordPress\AbstractArrayAssignmentRestrictionsSniff;
/**
* Flag REGEXP and NOT REGEXP in meta compare
*/
class RegexpCompareSniff extends AbstractArrayAssignmentRestrictionsSniff {
/**
* Groups of variables to restrict.
*
* @return array<string, array<string, string|array<string>>>
*/
public function getGroups() {
return [
'compare' => [
'type' => 'error',
'message' => 'Detected regular expression comparison. `%s` is set to `%s`.',
'keys' => [
'compare',
'meta_compare',
],
],
];
}
/**
* Callback to process each confirmed key, to check value.
*
* @param string $key Array index / key.
* @param mixed $val Assigned value.
* @param int $line Token line.
* @param array $group Group definition.
*
* @return bool FALSE if no match, TRUE if matches.
*/
public function callback( $key, $val, $line, $group ) {
$val = TextStrings::stripQuotes( $val );
return ( strpos( $val, 'NOT REGEXP' ) === 0
|| strpos( $val, 'REGEXP' ) === 0
);
}
}