forked from Hexlet/phpstan-functional-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDisallowMutatingFunctionsRule.php
79 lines (67 loc) · 1.79 KB
/
DisallowMutatingFunctionsRule.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
77
78
79
<?php
namespace Hexlet\PHPStanFp\Rules\Functions;
use PhpParser\Node;
use PhpParser\Node\Expr\FuncCall;
use PHPStan\Analyser\Scope;
use PHPStan\Rules\Rule;
use PHPStan\Rules\RuleErrorBuilder;
use PHPStan\Rules\IdentifierRuleError;
class DisallowMutatingFunctionsRule implements Rule
{
private bool $disallowMutatingFunctions;
/**
* @var array<string>
*/
private array $mutatingFunctionsNames = [
'array_multisort',
'array_pop',
'array_push',
'array_shift',
'array_splice',
'array_unshift',
'arsort',
'asort',
'krsort',
'ksort',
'natcasesort',
'natsort',
'rsort',
'shuffle',
'sort',
'uasort',
'uksort',
'usort',
];
public function __construct(bool $disallowMutatingFunctions)
{
$this->disallowMutatingFunctions = $disallowMutatingFunctions;
}
public function getNodeType(): string
{
return FuncCall::class;
}
/**
* @param FuncCall $node
* @param Scope $scope
* @return IdentifierRuleError[]
*/
public function processNode(Node $node, Scope $scope): array
{
if (!$this->disallowMutatingFunctions) {
return [];
}
if (!$node->name instanceof \PhpParser\Node\Name) {
return [];
}
$name = $node->name->getFirst();
if (!in_array($name, $this->mutatingFunctionsNames)) {
return [];
}
$errorMessage = "The use of function '{$name}' is not allowed as it might be a mutating function";
return [
RuleErrorBuilder::message($errorMessage)
->identifier('phpstanFunctionalProgramming.disallowMutatingFunctions')
->build()
];
}
}