diff options
Diffstat (limited to 'Zend/tests/attributes/027_trailing_comma_args.phpt')
-rw-r--r-- | Zend/tests/attributes/027_trailing_comma_args.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/attributes/027_trailing_comma_args.phpt b/Zend/tests/attributes/027_trailing_comma_args.phpt index 5ac47e08a8..226025f359 100644 --- a/Zend/tests/attributes/027_trailing_comma_args.phpt +++ b/Zend/tests/attributes/027_trailing_comma_args.phpt @@ -3,12 +3,12 @@ Trailing comma in attribute argument list --FILE-- <?php -@@MyAttribute( +#[MyAttribute( "there", "are", "many", "arguments", -) +)] class Foo { } $ref = new \ReflectionClass(Foo::class); |