We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6475a39 commit b541af1Copy full SHA for b541af1
ext/reflection/tests/ReflectionProperty_isFinal.phpt
@@ -13,7 +13,7 @@ class C {
13
public private(set) mixed $p7;
14
public private(set) final mixed $p8;
15
16
- public function __construct( final $p9 ) {}
+ public function __construct( final $p9, public $p10 ) {}
17
}
18
19
$rc = new ReflectionClass(C::class);
@@ -33,3 +33,4 @@ p6: bool(true)
33
p7: bool(true)
34
p8: bool(true)
35
p9: bool(true)
36
+p10: bool(false)
0 commit comments