Skip to content

Commit fd25c27

Browse files
committed
Fix false positive when extending SplObjectStorage on PHP < 8.4
1 parent a4774be commit fd25c27

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

tests/PHPStan/Rules/Methods/MissingMethodImplementationRuleTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,9 @@ public function testEnums(): void
5959
]);
6060
}
6161

62+
public function testBug11665(): void
63+
{
64+
$this->analyse([__DIR__ . '/data/bug-11665.php'], []);
65+
}
66+
6267
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
namespace Bug11665;
4+
5+
class Schema extends \SplObjectStorage
6+
{
7+
}

0 commit comments

Comments
 (0)