Skip to content

Commit c3cad7d

Browse files
committed
Regression test
Closes phpstan/phpstan#5297
1 parent 1dd40c0 commit c3cad7d

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

tests/PHPStan/Levels/data/propertyAccesses-7.json

+5
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,10 @@
3838
"message": "Access to an undefined property Levels\\PropertyAccesses\\Bar|Levels\\PropertyAccesses\\Foo::$bar.",
3939
"line": 170,
4040
"ignorable": true
41+
},
42+
{
43+
"message": "Access to an undefined property object::$baz.",
44+
"line": 200,
45+
"ignorable": true
4146
}
4247
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"message": "Cannot access property $foo on mixed.",
4+
"line": 197,
5+
"ignorable": true
6+
}
7+
]

tests/PHPStan/Levels/data/propertyAccesses.php

+28
Original file line numberDiff line numberDiff line change
@@ -174,3 +174,31 @@ public function doBaz()
174174
}
175175

176176
}
177+
178+
class ObjectWithIsset
179+
{
180+
181+
public function doFoo(): void
182+
{
183+
$test = new \stdClass;
184+
185+
if (isset($test->foo)) {
186+
echo $test->foo;
187+
echo $test->bar;
188+
echo $test->baz;
189+
}
190+
}
191+
192+
/**
193+
* @param mixed $test
194+
*/
195+
public function doBar($test): void
196+
{
197+
if (isset($test->foo) && isset($test->bar)) {
198+
echo $test->foo;
199+
echo $test->bar;
200+
echo $test->baz;
201+
}
202+
}
203+
204+
}

0 commit comments

Comments
 (0)