Skip to content

Commit 64ed7dc

Browse files
authored
Introduce Scope::getMaybeDefinedVariables()
1 parent 0b9ce98 commit 64ed7dc

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

src/Analyser/MutatingScope.php

+21
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,27 @@ public function getDefinedVariables(): array
574574
return $variables;
575575
}
576576

577+
/**
578+
* @api
579+
* @return array<int, string>
580+
*/
581+
public function getMaybeDefinedVariables(): array
582+
{
583+
$variables = [];
584+
foreach ($this->expressionTypes as $exprString => $holder) {
585+
if (!$holder->getExpr() instanceof Variable) {
586+
continue;
587+
}
588+
if (!$holder->getCertainty()->maybe()) {
589+
continue;
590+
}
591+
592+
$variables[] = substr($exprString, 1);
593+
}
594+
595+
return $variables;
596+
}
597+
577598
private function isGlobalVariable(string $variableName): bool
578599
{
579600
return in_array($variableName, self::SUPERGLOBAL_VARIABLES, true);

src/Analyser/Scope.php

+5
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ public function canAnyVariableExist(): bool;
6767
*/
6868
public function getDefinedVariables(): array;
6969

70+
/**
71+
* @return array<int, string>
72+
*/
73+
public function getMaybeDefinedVariables(): array;
74+
7075
public function hasConstant(Name $name): bool;
7176

7277
public function getPropertyReflection(Type $typeWithProperty, string $propertyName): ?ExtendedPropertyReflection;

tests/PHPStan/Analyser/ScopeTest.php

+27
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,21 @@
55
use PhpParser\Node\Expr\ConstFetch;
66
use PhpParser\Node\Name\FullyQualified;
77
use PHPStan\Testing\PHPStanTestCase;
8+
use PHPStan\TrinaryLogic;
89
use PHPStan\Type\Constant\ConstantArrayType;
910
use PHPStan\Type\Constant\ConstantBooleanType;
1011
use PHPStan\Type\Constant\ConstantIntegerType;
1112
use PHPStan\Type\Constant\ConstantStringType;
1213
use PHPStan\Type\IntegerRangeType;
1314
use PHPStan\Type\ObjectType;
15+
use PHPStan\Type\StringType;
1416
use PHPStan\Type\Type;
1517
use PHPStan\Type\UnionType;
1618
use PHPStan\Type\VerbosityLevel;
1719

20+
/**
21+
* @covers \PHPStan\Analyser\MutatingScope
22+
*/
1823
class ScopeTest extends PHPStanTestCase
1924
{
2025

@@ -248,4 +253,26 @@ public function testGetConstantType(): void
248253
$this->assertSame('int<1, max>', $type->describe(VerbosityLevel::precise()));
249254
}
250255

256+
public function testDefinedVariables(): void
257+
{
258+
/** @var ScopeFactory $scopeFactory */
259+
$scopeFactory = self::getContainer()->getByType(ScopeFactory::class);
260+
$scope = $scopeFactory->create(ScopeContext::create('file.php'))
261+
->assignVariable('a', new ConstantStringType('a'), new StringType(), TrinaryLogic::createYes())
262+
->assignVariable('b', new ConstantStringType('b'), new StringType(), TrinaryLogic::createMaybe());
263+
264+
$this->assertSame(['a'], $scope->getDefinedVariables());
265+
}
266+
267+
public function testMaybeDefinedVariables(): void
268+
{
269+
/** @var ScopeFactory $scopeFactory */
270+
$scopeFactory = self::getContainer()->getByType(ScopeFactory::class);
271+
$scope = $scopeFactory->create(ScopeContext::create('file.php'))
272+
->assignVariable('a', new ConstantStringType('a'), new StringType(), TrinaryLogic::createYes())
273+
->assignVariable('b', new ConstantStringType('b'), new StringType(), TrinaryLogic::createMaybe());
274+
275+
$this->assertSame(['b'], $scope->getMaybeDefinedVariables());
276+
}
277+
251278
}

0 commit comments

Comments
 (0)