@@ -2075,7 +2075,7 @@ static function (Node $node, Scope $scope) use ($arrowScope, &$arrowFunctionImpu
2075
2075
$ nameType = $ this ->getType ($ node ->name );
2076
2076
if (count ($ nameType ->getConstantStrings ()) > 0 ) {
2077
2077
return TypeCombinator::union (
2078
- ...array_map (fn ($ constantString ) => $ this
2078
+ ...array_map (fn ($ constantString ) => $ constantString -> getValue () === '' ? new ErrorType () : $ this
2079
2079
->filterByTruthyValue (new BinaryOp \Identical ($ node ->name , new String_ ($ constantString ->getValue ())))
2080
2080
->getType (new MethodCall ($ node ->var , new Identifier ($ constantString ->getValue ()), $ node ->args )), $ nameType ->getConstantStrings ()),
2081
2081
);
@@ -2155,7 +2155,7 @@ static function (Node $node, Scope $scope) use ($arrowScope, &$arrowFunctionImpu
2155
2155
$ nameType = $ this ->getType ($ node ->name );
2156
2156
if (count ($ nameType ->getConstantStrings ()) > 0 ) {
2157
2157
return TypeCombinator::union (
2158
- ...array_map (fn ($ constantString ) => $ this
2158
+ ...array_map (fn ($ constantString ) => $ constantString -> getValue () === '' ? new ErrorType () : $ this
2159
2159
->filterByTruthyValue (new BinaryOp \Identical ($ node ->name , new String_ ($ constantString ->getValue ())))
2160
2160
->getType (new Expr \StaticCall ($ node ->class , new Identifier ($ constantString ->getValue ()), $ node ->args )), $ nameType ->getConstantStrings ()),
2161
2161
);
@@ -2197,7 +2197,7 @@ static function (Node $node, Scope $scope) use ($arrowScope, &$arrowFunctionImpu
2197
2197
$ nameType = $ this ->getType ($ node ->name );
2198
2198
if (count ($ nameType ->getConstantStrings ()) > 0 ) {
2199
2199
return TypeCombinator::union (
2200
- ...array_map (fn ($ constantString ) => $ this
2200
+ ...array_map (fn ($ constantString ) => $ constantString -> getValue () === '' ? new ErrorType () : $ this
2201
2201
->filterByTruthyValue (new BinaryOp \Identical ($ node ->name , new String_ ($ constantString ->getValue ())))
2202
2202
->getType (
2203
2203
new PropertyFetch ($ node ->var , new Identifier ($ constantString ->getValue ())),
@@ -2271,7 +2271,7 @@ static function (Node $node, Scope $scope) use ($arrowScope, &$arrowFunctionImpu
2271
2271
$ nameType = $ this ->getType ($ node ->name );
2272
2272
if (count ($ nameType ->getConstantStrings ()) > 0 ) {
2273
2273
return TypeCombinator::union (
2274
- ...array_map (fn ($ constantString ) => $ this
2274
+ ...array_map (fn ($ constantString ) => $ constantString -> getValue () === '' ? new ErrorType () : $ this
2275
2275
->filterByTruthyValue (new BinaryOp \Identical ($ node ->name , new String_ ($ constantString ->getValue ())))
2276
2276
->getType (new Expr \StaticPropertyFetch ($ node ->class , new Node \VarLikeIdentifier ($ constantString ->getValue ()))), $ nameType ->getConstantStrings ()),
2277
2277
);
@@ -5695,6 +5695,10 @@ private function exactInstantiation(New_ $node, string $className): ?Type
5695
5695
$ constructorMethod = new DummyConstructorReflection ($ classReflection );
5696
5696
}
5697
5697
5698
+ if ($ constructorMethod ->getName () === '' ) {
5699
+ throw new ShouldNotHappenException ();
5700
+ }
5701
+
5698
5702
$ resolvedTypes = [];
5699
5703
$ methodCall = new Expr \StaticCall (
5700
5704
new Name ($ resolvedClassName ),
0 commit comments