Skip to content

Commit b5720bb

Browse files
committed
Remove type from (get|set)_modifiers_erases_static tests
1 parent 3325a30 commit b5720bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/php/lang/reflection/unittest/PropertiesTest.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ public function set_modifiers($modifier) {
5454
public function get_modifiers_erases_static() {
5555
Assert::equals(
5656
new Modifiers('public'),
57-
$this->declare('{ public static int $fixture; }')->property('fixture')->modifiers('get')
57+
$this->declare('{ public static $fixture; }')->property('fixture')->modifiers('get')
5858
);
5959
}
6060

6161
#[Test]
6262
public function set_modifiers_erases_static() {
6363
Assert::equals(
6464
new Modifiers('public'),
65-
$this->declare('{ public static int $fixture; }')->property('fixture')->modifiers('set')
65+
$this->declare('{ public static $fixture; }')->property('fixture')->modifiers('set')
6666
);
6767
}
6868

0 commit comments

Comments
 (0)