parser/tests/fixtures/0109/code.php

11 lines
173 B
PHP
Raw Normal View History

<?php
class foo {
public function __construct(
public string $a,
public readonly int $b,
public readonly float &$c,
&...$e,
) {}
}