Skip to content

Commit f9eeeb5

Browse files
staabmondrejmirtes
authored andcommitted
Fix signature type for default-null parameters
1 parent 9efcdf5 commit f9eeeb5

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

src/Reflection/SignatureMap/Php8SignatureMapProvider.php

+16-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace PHPStan\Reflection\SignatureMap;
44

55
use PhpParser\Node\AttributeGroup;
6+
use PhpParser\Node\Expr\ConstFetch;
67
use PhpParser\Node\Expr\Variable;
78
use PhpParser\Node\Scalar\String_;
89
use PhpParser\Node\Stmt\ClassConst;
@@ -22,6 +23,7 @@
2223
use PHPStan\Type\MixedType;
2324
use PHPStan\Type\ParserNodeTypeToPHPStanType;
2425
use PHPStan\Type\Type;
26+
use PHPStan\Type\TypeCombinator;
2527
use PHPStan\Type\TypehintHelper;
2628
use ReflectionFunctionAbstract;
2729
use function array_key_exists;
@@ -409,10 +411,23 @@ private function getSignature(
409411
throw new ShouldNotHappenException();
410412
}
411413
$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+
412427
$parameters[] = new ParameterSignature(
413428
$name->name,
414429
$param->default !== null || $param->variadic,
415-
TypehintHelper::decideType($parameterType, $phpDocParameterTypes[$name->name] ?? null),
430+
TypehintHelper::decideType($parameterType, $phpDocParameterType),
416431
$parameterType,
417432
$param->byRef ? PassedByReference::createCreatesNewVariable() : PassedByReference::createNo(),
418433
$param->variadic,

tests/PHPStan/Rules/Functions/CallToFunctionParametersRuleTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -2047,4 +2047,10 @@ public function testBug12499(): void
20472047
$this->analyse([__DIR__ . '/data/bug-12499.php'], []);
20482048
}
20492049

2050+
public function testBug7522(): void
2051+
{
2052+
$this->checkExplicitMixed = true;
2053+
$this->analyse([__DIR__ . '/data/bug-7522.php'], []);
2054+
}
2055+
20502056
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace Bug7522;
4+
5+
function doFoo() {
6+
// Example #2 from https://www.php.net/manual/en/function.ob-start.php
7+
\ob_start(null, 0, PHP_OUTPUT_HANDLER_STDFLAGS ^ PHP_OUTPUT_HANDLER_REMOVABLE);
8+
}

0 commit comments

Comments
 (0)