parser/tests/0153/code.php
Saif Eddin Gmati 1f4875c802 fix: properties parser
Signed-off-by: azjezz <azjezz@protonmail.com>
2022-12-04 08:56:53 +00:00

10 lines
139 B
PHP

<?php
namespace Foo\Bar;
final class Baz {
public function __construct(
public readonly string $name = "foo",
) {}
}