|
3 | 3 | namespace PHPStan\Reflection\SignatureMap;
|
4 | 4 |
|
5 | 5 | use PhpParser\Node\AttributeGroup;
|
| 6 | +use PhpParser\Node\Expr\ConstFetch; |
6 | 7 | use PhpParser\Node\Expr\Variable;
|
7 | 8 | use PhpParser\Node\Scalar\String_;
|
8 | 9 | use PhpParser\Node\Stmt\ClassConst;
|
|
22 | 23 | use PHPStan\Type\MixedType;
|
23 | 24 | use PHPStan\Type\ParserNodeTypeToPHPStanType;
|
24 | 25 | use PHPStan\Type\Type;
|
| 26 | +use PHPStan\Type\TypeCombinator; |
25 | 27 | use PHPStan\Type\TypehintHelper;
|
26 | 28 | use ReflectionFunctionAbstract;
|
27 | 29 | use function array_key_exists;
|
@@ -409,10 +411,23 @@ private function getSignature(
|
409 | 411 | throw new ShouldNotHappenException();
|
410 | 412 | }
|
411 | 413 | $parameterType = ParserNodeTypeToPHPStanType::resolve($param->type, $classReflection);
|
| 414 | + $phpDocParameterType = $phpDocParameterTypes[$name->name] ?? null; |
| 415 | + |
| 416 | + if ($param->default instanceof ConstFetch) { |
| 417 | + $constName = (string) $param->default->name; |
| 418 | + $loweredConstName = strtolower($constName); |
| 419 | + if ($loweredConstName === 'null') { |
| 420 | + $parameterType = TypeCombinator::addNull($parameterType); |
| 421 | + if ($phpDocParameterType !== null) { |
| 422 | + $phpDocParameterType = TypeCombinator::addNull($phpDocParameterType); |
| 423 | + } |
| 424 | + } |
| 425 | + } |
| 426 | + |
412 | 427 | $parameters[] = new ParameterSignature(
|
413 | 428 | $name->name,
|
414 | 429 | $param->default !== null || $param->variadic,
|
415 |
| - TypehintHelper::decideType($parameterType, $phpDocParameterTypes[$name->name] ?? null), |
| 430 | + TypehintHelper::decideType($parameterType, $phpDocParameterType), |
416 | 431 | $parameterType,
|
417 | 432 | $param->byRef ? PassedByReference::createCreatesNewVariable() : PassedByReference::createNo(),
|
418 | 433 | $param->variadic,
|
|
0 commit comments