|
| 1 | +<?php declare(strict_types = 1); |
| 2 | + |
| 3 | +namespace PHPStan\Rules\Debug; |
| 4 | + |
| 5 | +use PhpParser\Node; |
| 6 | +use PHPStan\Analyser\MutatingScope; |
| 7 | +use PHPStan\Analyser\Scope; |
| 8 | +use PHPStan\Reflection\ReflectionProvider; |
| 9 | +use PHPStan\Rules\Rule; |
| 10 | +use PHPStan\Rules\RuleErrorBuilder; |
| 11 | +use function count; |
| 12 | +use function implode; |
| 13 | +use function sprintf; |
| 14 | +use function strtolower; |
| 15 | + |
| 16 | +/** |
| 17 | + * @implements Rule<Node\Expr\FuncCall> |
| 18 | + */ |
| 19 | +final class DebugScopeRule implements Rule |
| 20 | +{ |
| 21 | + |
| 22 | + public function __construct(private ReflectionProvider $reflectionProvider) |
| 23 | + { |
| 24 | + } |
| 25 | + |
| 26 | + public function getNodeType(): string |
| 27 | + { |
| 28 | + return Node\Expr\FuncCall::class; |
| 29 | + } |
| 30 | + |
| 31 | + public function processNode(Node $node, Scope $scope): array |
| 32 | + { |
| 33 | + if (!$node->name instanceof Node\Name) { |
| 34 | + return []; |
| 35 | + } |
| 36 | + |
| 37 | + $functionName = $this->reflectionProvider->resolveFunctionName($node->name, $scope); |
| 38 | + if ($functionName === null) { |
| 39 | + return []; |
| 40 | + } |
| 41 | + |
| 42 | + if (strtolower($functionName) !== 'phpstan\debugscope') { |
| 43 | + return []; |
| 44 | + } |
| 45 | + |
| 46 | + if (!$scope instanceof MutatingScope) { |
| 47 | + return []; |
| 48 | + } |
| 49 | + |
| 50 | + $parts = []; |
| 51 | + foreach ($scope->debug() as $key => $row) { |
| 52 | + $parts[] = sprintf('%s: %s', $key, $row); |
| 53 | + } |
| 54 | + |
| 55 | + if (count($parts) === 0) { |
| 56 | + $parts[] = 'Scope is empty'; |
| 57 | + } |
| 58 | + |
| 59 | + return [ |
| 60 | + RuleErrorBuilder::message( |
| 61 | + implode("\n", $parts), |
| 62 | + )->nonIgnorable()->identifier('phpstan.debugScope')->build(), |
| 63 | + ]; |
| 64 | + } |
| 65 | + |
| 66 | +} |
0 commit comments