Skip to content

Commit efdd51e

Browse files
authored
Merge branch refs/heads/1.12.x into 2.1.x
2 parents 5cfe075 + eded2c3 commit efdd51e

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

src/Rules/FunctionDefinitionCheck.php

+7
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,13 @@ private function checkImplicitlyNullableType(
704704
return null;
705705
}
706706

707+
if ($type instanceof Identifier && strtolower($type->name) === 'null') {
708+
return null;
709+
}
710+
if ($type instanceof Name && $type->toLowerString() === 'null') {
711+
return null;
712+
}
713+
707714
if ($type instanceof UnionType) {
708715
foreach ($type->types as $innerType) {
709716
if ($innerType instanceof Identifier && strtolower($innerType->name) === 'null') {

tests/PHPStan/Rules/Methods/ExistingClassesInTypehintsRuleTest.php

+8
Original file line numberDiff line numberDiff line change
@@ -604,4 +604,12 @@ public function testDeprecatedImplicitlyNullableParameterType(): void
604604
]);
605605
}
606606

607+
public function testBug12501(): void
608+
{
609+
if (PHP_VERSION_ID < 80400) {
610+
self::markTestSkipped('This test needs PHP 8.4.');
611+
}
612+
$this->analyse([__DIR__ . '/data/bug-12501.php'], []);
613+
}
614+
607615
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php // lint >= 8.4
2+
3+
declare(strict_types = 1);
4+
5+
namespace Bug12501;
6+
7+
final readonly class EmptyObject {
8+
public function __construct(
9+
public null $value1 = null,
10+
) {}
11+
}

0 commit comments

Comments
 (0)