Skip to content

Commit 70756b0

Browse files
committed
Fix method_exists() after new $class
1 parent e713aa8 commit 70756b0

File tree

4 files changed

+26
-7
lines changed

4 files changed

+26
-7
lines changed

src/Analyser/MutatingScope.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -4641,7 +4641,7 @@ private function getTypeToInstantiateForNew(Type $type): Type
46414641
foreach ($type->getTypes() as $innerType) {
46424642
$decidedType = $decideType($innerType);
46434643
if ($decidedType === null) {
4644-
return new MixedType();
4644+
return new ObjectWithoutClassType();
46454645
}
46464646

46474647
$types[] = $decidedType;
@@ -4652,7 +4652,7 @@ private function getTypeToInstantiateForNew(Type $type): Type
46524652

46534653
$decidedType = $decideType($type);
46544654
if ($decidedType === null) {
4655-
return new MixedType();
4655+
return new ObjectWithoutClassType();
46564656
}
46574657

46584658
return $decidedType;

tests/PHPStan/Analyser/NodeScopeResolverTest.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -1712,7 +1712,7 @@ public function dataDeductedTypes(): array
17121712
'$loremObjectLiteral',
17131713
],
17141714
[
1715-
'mixed',
1715+
'object',
17161716
'$mixedObjectLiteral',
17171717
],
17181718
[
@@ -10897,6 +10897,11 @@ public function dataBug4577(): array
1089710897
return $this->gatherAssertTypes(__DIR__ . '/data/bug-4577.php');
1089810898
}
1089910899

10900+
public function dataBug4579(): array
10901+
{
10902+
return $this->gatherAssertTypes(__DIR__ . '/data/bug-4579.php');
10903+
}
10904+
1090010905
/**
1090110906
* @param string $file
1090210907
* @return array<string, mixed[]>
@@ -11138,6 +11143,7 @@ private function gatherAssertTypes(string $file): array
1113811143
* @dataProvider dataArrayMapClosure
1113911144
* @dataProvider dataBug4573
1114011145
* @dataProvider dataBug4577
11146+
* @dataProvider dataBug4579
1114111147
* @param string $assertType
1114211148
* @param string $file
1114311149
* @param mixed ...$args
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
namespace Bug4579;
4+
5+
use function PHPStan\Analyser\assertType;
6+
7+
function (string $class): void {
8+
$foo = new $class();
9+
if (method_exists($foo, 'doFoo')) {
10+
assertType('object&hasMethod(doFoo)', $foo);
11+
}
12+
};

tests/PHPStan/Analyser/data/generic-class-string.php

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static function f(): int {
1515
* @param mixed $a
1616
*/
1717
function testMixed($a) {
18-
assertType('mixed', new $a());
18+
assertType('object', new $a());
1919

2020
if (is_subclass_of($a, 'DateTimeInterface')) {
2121
assertType('class-string<DateTimeInterface>|DateTimeInterface', $a);
@@ -36,7 +36,7 @@ function testMixed($a) {
3636
* @param object $a
3737
*/
3838
function testObject($a) {
39-
assertType('mixed', new $a());
39+
assertType('object', new $a());
4040

4141
if (is_subclass_of($a, 'DateTimeInterface')) {
4242
assertType('DateTimeInterface', $a);
@@ -47,7 +47,7 @@ function testObject($a) {
4747
* @param string $a
4848
*/
4949
function testString($a) {
50-
assertType('mixed', new $a());
50+
assertType('object', new $a());
5151

5252
if (is_subclass_of($a, 'DateTimeInterface')) {
5353
assertType('class-string<DateTimeInterface>', $a);
@@ -63,7 +63,7 @@ function testString($a) {
6363
* @param string|object $a
6464
*/
6565
function testStringObject($a) {
66-
assertType('mixed', new $a());
66+
assertType('object', new $a());
6767

6868
if (is_subclass_of($a, 'DateTimeInterface')) {
6969
assertType('class-string<DateTimeInterface>|DateTimeInterface', $a);
@@ -92,6 +92,7 @@ function testClassExists(string $str)
9292
assertType('string', $str);
9393
if (class_exists($str)) {
9494
assertType('class-string', $str);
95+
assertType('object', new $str());
9596
}
9697

9798
$existentClass = \stdClass::class;

0 commit comments

Comments
 (0)