6
6
use PHPStan \Analyser \Scope ;
7
7
use PHPStan \Php \PhpVersion ;
8
8
use PHPStan \Reflection \FunctionReflection ;
9
- use PHPStan \Type \Accessory \AccessoryArrayListType ;
10
- use PHPStan \Type \ArrayType ;
11
9
use PHPStan \Type \DynamicFunctionReturnTypeExtension ;
12
- use PHPStan \Type \GeneralizePrecision ;
13
10
use PHPStan \Type \NeverType ;
14
11
use PHPStan \Type \NullType ;
15
12
use PHPStan \Type \Type ;
16
- use PHPStan \Type \TypeCombinator ;
17
13
use function count ;
18
14
use function strtolower ;
19
15
@@ -40,22 +36,15 @@ public function getTypeFromFunctionCall(FunctionReflection $functionReflection,
40
36
return $ this ->phpVersion ->arrayFunctionsReturnNullWithNonArray () ? new NullType () : new NeverType ();
41
37
}
42
38
43
- $ keysArray = $ arrayType ->getKeysArray ();
44
- if (count ($ functionCall ->getArgs ()) === 1 ) {
45
- return $ keysArray ;
39
+ $ strict = false ;
40
+ $ filterType = null ;
41
+ if (count ($ functionCall ->getArgs ()) >= 2 ) {
42
+ $ filterType = $ scope ->getType ($ functionCall ->getArgs ()[1 ]->value );
46
43
}
47
-
48
- $ newArrayType = $ keysArray ;
49
- if (!$ keysArray ->isConstantArray ()->no ()) {
50
- $ newArrayType = new ArrayType (
51
- $ keysArray ->getIterableKeyType ()->generalize (GeneralizePrecision::lessSpecific ()),
52
- $ keysArray ->getIterableValueType ()->generalize (GeneralizePrecision::lessSpecific ()),
53
- );
54
- }
55
- if ($ keysArray ->isList ()->yes ()) {
56
- $ newArrayType = TypeCombinator::intersect ($ newArrayType , new AccessoryArrayListType ());
44
+ if (count ($ functionCall ->getArgs ()) >= 3 ) {
45
+ $ strict = $ scope ->getType ($ functionCall ->getArgs ()[2 ]->value )->isTrue ()->yes ();
57
46
}
58
- return $ newArrayType ;
47
+ return $ arrayType -> getKeysArray ( $ filterType , $ strict ) ;
59
48
}
60
49
61
50
}
0 commit comments