parser/tests/fixtures/0110/code.php

11 lines
172 B
PHP
Raw Normal View History

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