Skip to content

Commit c2195b8

Browse files
committed
Introduce Scope::getMaybeDefinedVariables
Fixes phpstan/phpstan#11772
1 parent 0b9ce98 commit c2195b8

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-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;

0 commit comments

Comments
 (0)