19
19
*/
20
20
class UseSafeFunctionsRule implements Rule
21
21
{
22
+ /**
23
+ * @see JSON_THROW_ON_ERROR
24
+ */
25
+ const JSON_THROW_ON_ERROR = 4194304 ;
26
+
22
27
public function getNodeType (): string
23
28
{
24
29
return Node \Expr \FuncCall::class;
@@ -33,18 +38,18 @@ public function processNode(Node $node, Scope $scope): array
33
38
$ unsafeFunctions = FunctionListLoader::getFunctionList ();
34
39
35
40
if (isset ($ unsafeFunctions [$ functionName ])) {
36
- if (
37
- $ functionName === "json_decode "
38
- && $ this ->argValueIncludeJSONTHROWONERROR ($ node ->getArgs ()[3 ] ?? null )
39
- ) {
40
- return [];
41
- }
41
+ if (! $ node -> isFirstClassCallable ()) {
42
+ if ( $ functionName === "json_decode "
43
+ && $ this ->argValueIncludeJSONTHROWONERROR ($ node ->getArgs ()[3 ] ?? null )
44
+ ) {
45
+ return [];
46
+ }
42
47
43
- if (
44
- $ functionName === " json_encode "
45
- && $ this -> argValueIncludeJSONTHROWONERROR ( $ node -> getArgs ()[ 1 ] ?? null )
46
- ) {
47
- return [];
48
+ if ($ functionName === " json_encode "
49
+ && $ this -> argValueIncludeJSONTHROWONERROR ( $ node -> getArgs ()[ 1 ] ?? null )
50
+ ) {
51
+ return [];
52
+ }
48
53
}
49
54
50
55
return [new SafeFunctionRuleError ($ node ->name , $ node ->getStartLine ())];
@@ -77,8 +82,7 @@ private function argValueIncludeJSONTHROWONERROR(?Arg $arg): bool
77
82
}
78
83
79
84
return in_array (true , array_map (function ($ element ) {
80
- // JSON_THROW_ON_ERROR == 4194304
81
- return ($ element & 4194304 ) == 4194304 ;
85
+ return ($ element & self ::JSON_THROW_ON_ERROR ) == self ::JSON_THROW_ON_ERROR ;
82
86
}, array_filter ($ options , function ($ element ) {
83
87
return is_int ($ element );
84
88
})), true );
0 commit comments