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 3325a30 commit b5720bbCopy full SHA for b5720bb
src/test/php/lang/reflection/unittest/PropertiesTest.class.php
@@ -54,15 +54,15 @@ public function set_modifiers($modifier) {
54
public function get_modifiers_erases_static() {
55
Assert::equals(
56
new Modifiers('public'),
57
- $this->declare('{ public static int $fixture; }')->property('fixture')->modifiers('get')
+ $this->declare('{ public static $fixture; }')->property('fixture')->modifiers('get')
58
);
59
}
60
61
#[Test]
62
public function set_modifiers_erases_static() {
63
64
65
- $this->declare('{ public static int $fixture; }')->property('fixture')->modifiers('set')
+ $this->declare('{ public static $fixture; }')->property('fixture')->modifiers('set')
66
67
68
0 commit comments