File tree 2 files changed +26
-0
lines changed
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -574,6 +574,27 @@ public function getDefinedVariables(): array
574
574
return $ variables ;
575
575
}
576
576
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
+
577
598
private function isGlobalVariable (string $ variableName ): bool
578
599
{
579
600
return in_array ($ variableName , self ::SUPERGLOBAL_VARIABLES , true );
Original file line number Diff line number Diff line change @@ -67,6 +67,11 @@ public function canAnyVariableExist(): bool;
67
67
*/
68
68
public function getDefinedVariables (): array ;
69
69
70
+ /**
71
+ * @return array<int, string>
72
+ */
73
+ public function getMaybeDefinedVariables (): array ;
74
+
70
75
public function hasConstant (Name $ name ): bool ;
71
76
72
77
public function getPropertyReflection (Type $ typeWithProperty , string $ propertyName ): ?ExtendedPropertyReflection ;
You can’t perform that action at this time.
0 commit comments