Hello,
<?php
class foo
{
public function __construct(
private readonly \First\String $first,
private readonly \Second\Int $second,
) {
}
}
is formatted to
private readonly\First\String $first,
private readonly\Second\Int $second,
The whitespace after readonly is removed.
I cannot find a setting to change that behavior.
Any help?