-
-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathForbidDeclareStrictTypesRule.php
More file actions
62 lines (54 loc) · 1.67 KB
/
Copy pathForbidDeclareStrictTypesRule.php
File metadata and controls
62 lines (54 loc) · 1.67 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
55
56
57
58
59
60
61
62
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\AI\PHPStan;
use PhpParser\Node;
use PhpParser\Node\Stmt\Declare_;
use PhpParser\Node\Stmt\DeclareDeclare;
use PHPStan\Analyser\Scope;
use PHPStan\Rules\Rule;
use PHPStan\Rules\RuleErrorBuilder;
/**
* PHPStan rule that forbids usage of declare(strict_types=1) statements.
*
* This rule enforces that strict_types declaration should not be used.
*
* @author Oskar Stark <[email protected]>
*
* @implements Rule<Declare_>
*/
final class ForbidDeclareStrictTypesRule implements Rule
{
public function getNodeType(): string
{
return Declare_::class;
}
public function processNode(Node $node, Scope $scope): array
{
if (!$node instanceof Declare_) {
return [];
}
$errors = [];
foreach ($node->declares as $declare) {
if ($declare instanceof DeclareDeclare) {
$key = $declare->key->toString();
if ('strict_types' === $key) {
$errors[] = RuleErrorBuilder::message(
'Usage of declare(strict_types=1) is forbidden. Remove the declare statement.'
)
->line($node->getLine())
->identifier('symfonyAi.forbidDeclareStrictTypes')
->tip('Remove the declare(strict_types=1) statement from the file.')
->build();
}
}
}
return $errors;
}
}