summaryrefslogtreecommitdiff
path: root/Zend/tests/bug79155.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug79155.phpt')
-rw-r--r--Zend/tests/bug79155.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug79155.phpt b/Zend/tests/bug79155.phpt
index be9488da86..d3b31436bd 100644
--- a/Zend/tests/bug79155.phpt
+++ b/Zend/tests/bug79155.phpt
@@ -4,8 +4,8 @@ Bug #79155: Property nullability lost when using multiple property definition
<?php
class Foo {
- public ?string $a, $b;
- public ?stdClass $c, $d;
+ public ?string $a, $b;
+ public ?stdClass $c, $d;
}
$t = new Foo;