Skip to content

Commit 928c57d

Browse files
committed
Merge remote-tracking branch 'origin/1.12.x' into 2.0.x
2 parents 02a077d + fd25c27 commit 928c57d

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"nette/utils": "^3.2.5",
2525
"nikic/php-parser": "^5.1.0",
2626
"ondram/ci-detector": "^3.4.0",
27-
"ondrejmirtes/better-reflection": "6.42.0.7",
27+
"ondrejmirtes/better-reflection": "6.42.0.8",
2828
"phpstan/php-8-stubs": "0.3.102",
2929
"phpstan/phpdoc-parser": "^2.0",
3030
"psr/http-message": "^1.1",

composer.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/PHPStan/Rules/Methods/MissingMethodImplementationRuleTest.php

Lines changed: 5 additions & 0 deletions
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
}
Lines changed: 7 additions & 0 deletions
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)