File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AssertSameBooleanExpectedRule.php
Back
<?php declare (strict_types=1); namespace PHPStan\Rules\PHPUnit; use PhpParser\Node; use PhpParser\Node\Expr\ConstFetch; use PhpParser\Node\Expr\MethodCall; use PhpParser\Node\Expr\StaticCall; use PhpParser\NodeAbstract; use PHPStan\Analyser\Scope; use PHPStan\Rules\Rule; use function count; use function strtolower; /** * @implements Rule<NodeAbstract> */ class AssertSameBooleanExpectedRule implements Rule { public function getNodeType() : string { return NodeAbstract::class; } public function processNode(Node $node, Scope $scope) : array { if (!\PHPStan\Rules\PHPUnit\AssertRuleHelper::isMethodOrStaticCallOnAssert($node, $scope)) { return []; } /** @var MethodCall|StaticCall $node */ $node = $node; if (count($node->getArgs()) < 2) { return []; } if (!$node->name instanceof Node\Identifier || strtolower($node->name->name) !== 'assertsame') { return []; } $expectedArgumentValue = $node->getArgs()[0]->value; if (!$expectedArgumentValue instanceof ConstFetch) { return []; } if ($expectedArgumentValue->name->toLowerString() === 'true') { return ['You should use assertTrue() instead of assertSame() when expecting "true"']; } if ($expectedArgumentValue->name->toLowerString() === 'false') { return ['You should use assertFalse() instead of assertSame() when expecting "false"']; } return []; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings